Computer_Hardware_Store/HardwareShop/HardwareShopContracts/ViewModels/ComponentViewModel.cs

21 lines
575 B
C#

using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace HardwareShopContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
public int Id { get; set; }
[DisplayName("Компонент")]
public string ComponentName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Cost { get; set; }
public int UserId { get; set; }
public Dictionary<int, (IBuildModel, int)>? ComponentBuilds
{
get;
set;
} = new();
}
}