16 lines
408 B
C#
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();
|
|
}
|
|
}
|