14 lines
405 B
C#
14 lines
405 B
C#
|
|
|||
|
using Contracts.ViewModels;
|
|||
|
|
|||
|
namespace BusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class ExcelInfoImplementer
|
|||
|
{
|
|||
|
public MemoryStream memoryStream { get; set; } = new MemoryStream();
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
public List<DetailWorkshopReportViewModel> detailWorkshops { get; set; } = new();
|
|||
|
public int maxleng { get; set; }
|
|||
|
}
|
|||
|
}
|