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

13 lines
368 B
C#
Raw Normal View History

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