OrderBindingModel

This commit is contained in:
VictoriaPresnyakova 2023-04-01 20:42:48 +04:00
parent 3e3b55a0bf
commit df4b8fbd04

View File

@ -12,7 +12,9 @@ namespace JewelryStoreContracts.BindingModels
{
public int Id { get; set; }
public int JewelId { get; set; }
public string JewelName { get; set; }
public int ClientId { get; set; }
public string JewelName { get; set; } = string.Empty;
public int Count { get; set; }
public double Sum { get; set; }
public OrderStatus Status { get; set; } = OrderStatus.Неизвестен;