2024-05-01 20:40:47 +04:00
|
|
|
|
|
|
|
|
|
|
2024-05-28 17:08:06 +04:00
|
|
|
|
using UniversityContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace UniversityBusinessLogic.OfficePackage.HelperModels
|
2024-05-01 20:40:47 +04:00
|
|
|
|
{
|
2024-05-28 20:09:01 +04:00
|
|
|
|
public class WordInfoWorker
|
2024-05-01 20:40:47 +04:00
|
|
|
|
{
|
|
|
|
|
public string? FileName { get; set; }
|
|
|
|
|
public Stream? Stream { get; set; }
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
public List<object> ReportObjects { get; set; } = new();
|
2024-05-28 17:08:06 +04:00
|
|
|
|
public List<PlanOfStudyViewModel> PlanOfStudys { get; set; } = new();
|
2024-05-01 20:40:47 +04:00
|
|
|
|
}
|
|
|
|
|
}
|