CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/ExcelInfoClient.cs
Илья Федотов 93e0fe9524 Pdf Report Client
2024-07-23 20:29:10 +04:00

11 lines
313 B
C#

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