Rogashova_E.A._CourseWork_H.../Hospital/HospitalBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

21 lines
506 B
C#

using HospitalContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HospitalBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportKurseMedicinesViewModel> KurseMedicines
{
get;
set;
} = new();
}
}