using AyCode.Interfaces.Entities; using AyCode.Interfaces.TimeStampInfo; using FruitBank.Common.Entities; namespace FruitBank.Common.Interfaces; public interface IShippingDocument: IEntityInt, ITimeStampInfo { public int PartnerId { get; set; } public int ShippingId { get; set; } public DateTime ShippingDate { get; set; } public string Country { get; set; } public bool IsAllMeasured { get; set; } public Partner? Partner { get; set; } public List? ShippingItems { get; set; } }