using ElectronicsShopContracts.ViewModels; namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels { public class ExcelInfoClient { public string Title { get; set; } = string.Empty; public DateTime DateFrom { get; set; } public DateTime DateTo { get; set; } public List PaymeantProducts { get; set; } = new(); } }