2024-05-30 16:07:54 +04:00
|
|
|
|
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
2024-05-31 19:49:56 +04:00
|
|
|
|
public class WordInfoClient
|
2024-05-30 16:07:54 +04:00
|
|
|
|
{
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-08-01 22:33:30 +04:00
|
|
|
|
|
|
|
|
|
public DateTime DateFrom { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime DateTo { get; set; }
|
|
|
|
|
|
2024-08-03 21:44:27 +04:00
|
|
|
|
public List<ReportProductsViewModel>? Products { get; set; } = new();
|
2024-05-30 16:07:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|