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

10 lines
237 B
C#
Raw Normal View History

2024-04-27 18:28:37 +04:00
namespace ShipyardDataModels.Models
{
public interface IShipModel : IId
{
string ShipName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> ShipComponents { get; }
}
}