using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using ComputersShopDataModels.Models; namespace ComputersShopContracts.ViewModels { public class ComputerViewModel: IComputerModel { public int Id { get; set; } [DisplayName("Название изделия")] public string ComputerName { get; set; } = string.Empty; [DisplayName("Цена")] public double Price { get; set; } public Dictionary ComputerComponents { get; set; } = new(); } }