начала делать отчеты для ворда

This commit is contained in:
Елена Бакальская 2024-05-28 00:28:53 +04:00
parent 48dd095182
commit 320e2a4ace

View File

@ -0,0 +1,11 @@
using PolyclinicContracts.ViewModels;
namespace PolyclinicBusinessLogic.OfficePackage.HelperModels.Word
{
public class WordCoursesByProceduresInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<CourseViewModel> Courses { get; set; } = new();
}
}