Romanov_E.V._CourseWork_Vet.../VeterinaryClinicBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
10Г Егор Романов 904785dbd1 Something done
2023-04-07 14:47:26 +04:00

19 lines
556 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VeterinaryClinicContracts.ViewModels;
namespace VeterinaryClinicBusinessLogic.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();
}
}