PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/BindingModels/ChequeBindingModel.cs

16 lines
364 B
C#
Raw Normal View History

2024-05-15 21:37:18 +04:00
namespace SushiBarContracts.BindingModels
{
public class ChequeBindingModel
{
public List<ChequeItemBindingModel> ChequeItems { get; set; } = new();
public int? CustomerId { get; set; }
public DateTime OrderDate { get; set; }
public double TotalSum { get; set; }
public int? PromotionId { get; set; }
}
}