CourseWork_SchoolStudyAgain/SchoolAgainStudy/SchoolAgainStudyBusinessLogic/OfficePackage/HelperModels/WordInfoTeacher.cs

13 lines
367 B
C#
Raw Normal View History

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