20 lines
549 B
C#
20 lines
549 B
C#
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; }
|
|
}
|
|
}
|