PIbd-21_BatylkinaAO_MusoevD.../Canteen/CanteenBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

20 lines
549 B
C#
Raw Normal View History

2023-05-20 12:11:48 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CanteenContracts.ViewModels;
namespace CanteenBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfo
{
public string FileName { get; set; }
public string FilePath = "C:\\Reports";
public string Title { get; set; }
public DateTime DateAfter { get; set; }
public DateTime DateBefore { get; set; }
public List<ReportLunchesPCView> Lunches { get; set; }
}
}