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

14 lines
472 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
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; }
}