ISEbd-21_Melnikov_I.O._CarS.../CarService/CarServiceBusinessLogic/OfficePackage/HelperModels/ExcelInfo.cs

13 lines
360 B
C#
Raw Permalink Normal View History

2023-05-25 22:31:46 +04:00

using CarServiceContracts.ViewModels;
namespace CarServiceBusinessLogic.OfficePackage.HelperModels
2023-05-25 22:31:46 +04:00
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportWorkWithRequestsViewModel> WorksWithRequests { get; set; } = new();
}
}