namespace MotorPlantDataModels.Models { public interface IEngineModel : IId { string EngineName { get; } double Price { get; } Dictionary EngineComponents { get; } } }