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

15 lines
355 B
C#
Raw Normal View History

using ElectronicsShopContracts.ViewModels;
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
{
public class WordInfoEmployee
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2024-06-01 02:22:36 +04:00
public List<ProductViewModel> ListProduct { get; set; } = new();
}
}