stage9_10 #16

Merged
ns.potapov merged 98 commits from stage9_10 into main 2024-05-30 04:28:50 +04:00
Showing only changes of commit 320e2a4ace - Show all commits

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();
}
}