9 lines
221 B
C#
Raw Normal View History

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