CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyBusinessLogic/OfficePackage/HelperModels/WordInfoStudent.cs
2023-04-07 14:25:31 +04:00

13 lines
373 B
C#

using SchoolAgainStudyContracts.ViewModel;
namespace SchoolAgainStudyBusinessLogic.OfficePackage.HelperModels
{
public class WordInfoStudent
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportInterestLessonViewModel> InterestLessons { get; set; } = new();
}
}