using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pos.Models { public class TotalSaleDetail { public decimal TotalSale { get; set; } public int TotalCustomer { get; set; } public List TotalSaleCategories { get; set; } = new(); } }