CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/ExcelInfoClient.cs
Илья Федотов 84442ed049 Date in reporst bv client
2024-08-01 22:33:30 +04:00

16 lines
408 B
C#

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