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

13 lines
374 B
C#
Raw Normal View History

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