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; }