14 lines
323 B
C#
14 lines
323 B
C#
|
|
|
|
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<object> ReportObjects { get; set; } = new();
|
|
}
|
|
}
|