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

17 lines
454 B
C#
Raw Normal View History

using SchoolAgainStudyContracts.ViewModel;
namespace SchoolAgainStudyBusinessLogic.OfficePackage.HelperModels
{
public class PdfInfoStudent
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<ReportInterestViewModel> Interests { get; set; } = new();
}
}