13 lines
368 B
C#
13 lines
368 B
C#
|
|
using CarServiceContracts.ViewModels;
|
|
|
|
namespace BlacksmithWorkshopBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class ExcelInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<ReportWorkWithRequestsViewModel> WorksWithRequests { get; set; } = new();
|
|
}
|
|
}
|