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

14 lines
352 B
C#
Raw Normal View History

using ElectronicsShopContracts.ViewModels;
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfoEmployee
{
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> Products { get; set; } = new();
}
}