PIbd-22_Aleikin_A.M._Confec.../Confectionery/ConfectioneryBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

23 lines
554 B
C#
Raw Normal View History

2023-03-28 00:43:46 +04:00
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();
}
}