ISEbd-21_Agliullov.D.A._Con.../ConfectionaryBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
Данияр Аглиуллов 3d7c2ac7ac Базовые изменения
2023-03-01 16:42:58 +04:00

19 lines
550 B
C#

using ConfectioneryContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportOrdersViewModel> Orders { get; set; } = new();
}
}