17 lines
438 B
C#
17 lines
438 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using FruitBank.Common.Entities;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface ICargoTruck : IEntityInt, ITimeStampInfo
|
|
{
|
|
public int CargoPartnerId { get; set; }
|
|
|
|
public CargoPartner CargoPartner { get; set; }
|
|
|
|
public string CountryCode { get; set; }
|
|
public string LicencePlate { get; set; }
|
|
|
|
public bool IsTrailer { get; set; }
|
|
} |