13 lines
344 B
C#
Raw Normal View History

2024-04-05 10:20:47 +04:00
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();
}
}