9 lines
221 B
C#
9 lines
221 B
C#
|
namespace ShipyardDataModels.Models
|
|||
|
{
|
|||
|
public interface IShipModel : IId
|
|||
|
{
|
|||
|
string ShipName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IDetailModel, int)> ShipDetails { get; }
|
|||
|
}
|
|||
|
}
|