2024-05-29 23:23:53 +04:00
|
|
|
|
using UniversityContracts.ViewModels;
|
2024-05-28 20:07:10 +04:00
|
|
|
|
|
|
|
|
|
namespace UniversityBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfoStorekeeper
|
|
|
|
|
{
|
|
|
|
|
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 21:41:10 +04:00
|
|
|
|
public List<ReportTeacherViewModel> TeacherInfo{ get; set; } = new();
|
2024-05-28 20:07:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|