10 lines
237 B
C#

namespace ShipyardDataModels.Models
{
public interface IShipModel : IId
{
string ShipName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ShipComponents { get; }
}
}