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

12 lines
314 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();
}
}