CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/WordInfoEmployee.cs
Илья Федотов 1fd9aaf8c1 Emp docx report
2024-07-29 21:12:31 +04:00

13 lines
310 B
C#

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