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

11 lines
237 B
C#
Raw Normal View History

2024-04-14 15:16:13 +04:00
namespace MotorPlantDataModels.Models
{
public interface IEngineModel : IId
{
string EngineName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> EngineComponents { get; }
}
}