19 lines
517 B
C#
19 lines
517 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 PdfInfoService
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Title { get; set; }
|
|
public DateTime DateFrom { get; set; }
|
|
public DateTime DateTo { get; set; }
|
|
public ReportServiceViewModel Services { get; set; }
|
|
}
|
|
}
|