12 lines
323 B
C#
12 lines
323 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShipping : IEntityInt, ITimeStampInfo
|
|
{
|
|
int PartnerId { get; set; }
|
|
DateTime ShippingDate { get; set; }
|
|
string LicencePlate { get; set; }
|
|
bool IsAllMeasured { get; set; }
|
|
} |