PIbd-21_Zaharchenko_M.I._Pi.../Pizzeria/PizzeriaBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

20 lines
595 B
C#
Raw Permalink Normal View History

2023-03-22 12:10:23 +04:00
using PizzeriaBusinessLogic.OfficePackage.HelperEnums;
using PizzeriaContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaBusinessLogic.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();
}
}