10 lines
235 B
C#

namespace MotorPlantDataModels.Models
{
public interface IMotorModel : IId
{
string MotorName { get; }
double Price { get; }
Dictionary <int , (IComponentModel, int)> MotorComponents { get; }
}
}