19 lines
512 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VetClinicBusinessLogic.ViewModels;
namespace VetClinicBusinessLogic.BusinessLogic.OfficePackage.Models
{
public class PdfInfo
{
public string FileName { get; set; }
public string Title { get; set; }
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportVisitViewModel> Visits { get; set; }
}
}