10 lines
238 B
C#
10 lines
238 B
C#
namespace MotorPlantDataModels.Models
|
|
{
|
|
public interface IEngineModel : IId
|
|
{
|
|
string EngineName { get; }
|
|
double Price { get; }
|
|
Dictionary <int , (IComponentModel, int)> EngineComponents { get; }
|
|
}
|
|
}
|