Aparyan.ISE-22.MotorPlant/MotorPlantDataModels/Models/IEngineModel.cs
2024-03-23 18:12:12 +04:00

10 lines
238 B
C#

namespace MotorPlantDataModels.Models
{
public interface IEngineModel : IId
{
string EngineName { get; }
double Price { get; }
Dictionary <int , (IComponentModel, int)> EngineComponents { get; }
}
}