CourseWork/University/UniversityBusinessLogic/OfficePackage/HelperModels/PdfInfoWorker.cs

12 lines
357 B
C#
Raw Normal View History

using UniversityContracts.ViewModels;
namespace UniversityBusinessLogic.OfficePackage.HelperModels
{
2024-05-28 21:40:18 +04:00
public class PdfInfoWorker
{
public string? FileName { get; set; }
public string Title { get; set; } = string.Empty;
public List<ReportPlanOfStudyAndStudentViewModel> PlanOfStudyAndStudent { get; set; } = new();
}
}