PIbd-23_Yakobchuk_S.V._Moto.../MotorPlant/MotorPlantDataModels/IEngineModel.cs

11 lines
237 B
C#

namespace MotorPlantDataModels.Models
{
public interface IEngineModel : IId
{
string EngineName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> EngineComponents { get; }
}
}