namespace UniversityBusinessLogics.OfficePackage.HelperModels { public class WordInfo { public string? FileName { get; set; } public Stream? Stream { get; set; } public string Title { get; set; } = string.Empty; public List ReportObjects { get; set; } = new(); } }