16 lines
397 B
C#
Raw Normal View History

2024-04-25 23:20:52 +04:00
using MotorPlantContracts.ViewModels;
namespace MotorPlantBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportEngineComponentViewModel> EngineComponents
{
get;
set;
} = new();
}
}