lab2-hard to lab3-hard #7

Merged
Salikh merged 9 commits from lab2-hard into lab3-hard 2024-04-11 01:01:49 +04:00
Showing only changes of commit b569dbb445 - Show all commits

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();