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 Interests { get; set; } = new(); } }