CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/ExcelInfoClient.cs
Илья Федотов 560194eb95 bug fix/xlsx file make
2024-07-02 17:28:23 +04:00

12 lines
374 B
C#

using ElectronicsShopContracts.ViewModels;
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfoClient
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportPaymeantProductsViewModel> PaymeantProducts { get; set; } = new();
}
}