This commit is contained in:
Salikh 2024-04-03 15:57:18 +04:00
parent a528263511
commit b569dbb445

View File

@ -7,7 +7,7 @@ namespace MotorPlantFileImplement.Models
{
public class Engine : IEngineModel
{
public int Id { get; private set; }
public int Id { get; private set; }
public string EngineName { get; private set; } = string.Empty;
public double Price { get; private set; }
public Dictionary<int, int> Components { get; private set; } = new();