19 lines
423 B
C#
19 lines
423 B
C#
namespace UniversityBusinessLogics.OfficePackage.HelperModels
|
|
{
|
|
public class ExcelInfo
|
|
{
|
|
public string? FileName { get; set; }
|
|
|
|
public Stream? Stream { get; set; }
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<object> ReportObjects
|
|
{
|
|
get;
|
|
set;
|
|
} = new();
|
|
|
|
public List<string> Headers { get; set; } = new();
|
|
}
|
|
}
|