Files
CourseWork_CarCenter/CarCenter/CarCenterBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs

21 lines
664 B
C#

using CarCenterContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarCenterBusinessLogic.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<ReportEquipmentsEmployeesViewModel> ReportEquipmentsEmployees { get; set; } = new();
/*public List<ReportVisitsDrugsViewModel> ReportVisitsDrugs { get; set; } = new();*/// возможно надо убрать
}
}