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