17 lines
390 B
C#
Raw Normal View History

2024-03-23 18:12:12 +04:00
using MotorPlantDataModels.Models;
namespace MotorPlantContracts.BindingModels
{
public class EngineBindingModel : IEngineModel
{
public int Id { get; set; }
public string EngineName { get; set; } = string.Empty;
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> EngineComponents { get; set; } = new();
}
}