11 lines
237 B
C#
Raw Normal View History

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