PIbd-23_Starostin_I.K._Ship.../ShipyardDataModels/IShipModel.cs

10 lines
237 B
C#

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