22 lines
532 B
C#
Raw Normal View History

2023-04-07 14:47:26 +04:00
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 ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportMedicineMedicationViewModel> MedicineMedications
{
get;
set;
} = new();
}
}