11 lines
286 B
C#
Raw Normal View History

2024-04-05 10:20:47 +04:00
namespace ShipyardContracts.ViewModels
{
public class ReportShipDetailViewModel
{
public string ShipName { get; set; } = string.Empty;
public int TotalCount { get; set; }
public List<(string Detail, int Count)> Details { get; set; } = new();
}
}