PIbd-22_Chernyshev_Shabunov.../ComputerShopContracts/BindingModels/AssemblyBindingModel.cs
2024-05-02 00:10:15 +04:00

22 lines
518 B
C#

using ComputerShopDataModels.Models;
namespace ComputerShopContracts.BindingModels
{
public class AssemblyBindingModel : IAssemblyModel
{
public int Id { get; set; }
public int UserId { get; set; }
public string AssemblyName { get; set; } = string.Empty;
public double Price { get; set; }
public string Category { get; set; } = string.Empty;
public Dictionary<int, (IComponentModel, int)> AssemblyComponents { get; set; } = new();
public Dictionary<int, int> Test { get; set; } = new();
}
}