18 lines
482 B
C#
18 lines
482 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IShippingItem : IEntityInt, ITimeStampInfo
|
|
{
|
|
int ShippingDocumentId { get; set; }
|
|
int? ProductId { get; set; }
|
|
|
|
string Name { get; set; }
|
|
double NetWeight { get; set; }
|
|
double GrossWeight { get; set; }
|
|
double? MeasuredNetWeight { get; set; }
|
|
double? MeasuredGrossWeight { get; set; }
|
|
|
|
bool IsMeasured { get; set; }
|
|
} |