13 lines
374 B
C#
13 lines
374 B
C#
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();
|
|
}
|
|
} |