Spaces:
Sleeping
Sleeping
File size: 379 Bytes
13240d3 | 1 2 3 4 5 6 7 8 9 10 11 12 | namespace BakeryErp.Domain.Entities;
public sealed class TransferOrderLine : BaseEntity
{
public Guid TransferOrderId { get; set; }
public Guid ItemId { get; set; }
public decimal RequestedQuantity { get; set; }
public decimal ShippedQuantity { get; set; }
public decimal ReceivedQuantity { get; set; }
public string Unit { get; set; } = string.Empty;
}
|