CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/WordInfoEmployee.cs

13 lines
310 B
C#
Raw Normal View History

using ElectronicsShopContracts.ViewModels;
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
{
public class WordInfoEmployee
{
public string Title { get; set; } = string.Empty;
2024-07-29 21:12:31 +04:00
public List<ReportProductInPaymeantsViewModel> ListProduct { get; set; } = new();
}
}