CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/ExcelInfoEmployee.cs
Илья Федотов c12b242073 Emp xlsx report
2024-07-30 15:36:42 +04:00

12 lines
301 B
C#

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