Api/Netina.Domain/Dtos/ResponseDtos/CheckOrderBagResponseItem.cs

14 lines
472 B
C#

namespace Netina.Domain.Dtos.ResponseDtos;
public class CheckOrderBagResponseItem
{
public Guid ProductId { get; set; }
public string ProductName { get; set; } = string.Empty;
public int Count { get; set; }
public double Cost { get; set; }
public double CostWithDiscount { get; set; }
public double DiscountPercent { get; set; }
public bool IsEnable { get; set; }
public bool IsRemoved { get; set; }
public int Stock { get; set; }
}