17 lines
448 B
C#
17 lines
448 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 ExcelInfoVisitService
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Title { get; set; }
|
|
public List<ReportVisitServiceViewModel> VisitServices { get; set; }
|
|
}
|
|
}
|