using System; using System.Collections.Generic; namespace EpsonPrinter.Model { public class SaleOfDayModel { public DateTime Date { get; set; } public int TotalCustomers { get; set; } public Decimal TotalSale { get; set; } public List SaleOfDayDetail { get; set; } = new(); } }