10 lines
238 B
C#
Raw Normal View History

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