13 lines
393 B
C#
13 lines
393 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShippingDocument: IEntityInt, ITimeStampInfo
|
|
{
|
|
public int PartnerId { get; set; }
|
|
public int ShippingId { get; set; }
|
|
public int ShippingItemId { get; set; }
|
|
public DateTime ShippingDate { get; set; }
|
|
public string Country { get; set; }
|
|
} |