2024-04-05 10:20:47 +04:00

13 lines
344 B
C#

using ShipyardContracts.ViewModels;
namespace ShipyardBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportShipDetailViewModel> ShipDetails { get; set; } = new();
}
}