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