19 lines
419 B
C#
Raw Permalink Normal View History

2024-05-01 17:54:58 +04:00
namespace SchoolBusinessLogics.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();
}
}