13 lines
368 B
C#
Raw Normal View History

using ShipyardDataModels.Models;
namespace ShipyardContracts.BindingModels
{
public class ShipBindingModel : IShipModel
{
public int Id { get; set; }
public string ShipName { get; set; } = String.Empty;
public double Price { get; set; }
public Dictionary<int, (IDetailModel, int)> ShipDetails { get; set; } = new();
}
}