namespace FrontOffice.BFF.Application.DiscountShopCQ.Queries.GetMyDiscountCart; public class GetMyDiscountCartResponseDto { /// /// آیتم‌های سبد خرید /// public List Items { get; set; } = new(); /// /// جمع کل قیمت (بدون تخفیف) /// public long TotalPrice { get; set; } /// /// جمع کل تخفیف /// public long TotalDiscountAmount { get; set; } /// /// مبلغ قابل پرداخت /// public long PayableAmount => TotalPrice - TotalDiscountAmount; /// /// تعداد کل آیتم‌ها /// public int TotalItemCount => Items.Sum(i => i.Count); } public class DiscountCartItemDto { /// /// شناسه آیتم سبد /// public long Id { get; set; } /// /// شناسه محصول /// public long ProductId { get; set; } /// /// عنوان محصول /// public string ProductTitle { get; set; } = string.Empty; /// /// قیمت واحد /// public long UnitPrice { get; set; } /// /// تعداد /// public int Count { get; set; } /// /// درصد تخفیف /// public int MaxDiscountPercent { get; set; } /// /// مبلغ تخفیف /// public long DiscountAmount { get; set; } /// /// قیمت کل ردیف /// public long TotalPrice => UnitPrice * Count; /// /// مسیر تصویر /// public string ThumbnailPath { get; set; } = string.Empty; }