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