using ComputerHardwareStoreDataModels.Models; using System.ComponentModel; namespace ComputerHardwareStoreContracts.ViewModels { public class BuildViewModel : IBuildModel { public int Id { get; set; } [DisplayName("Название сборки")] public string Name { get; set; } = string.Empty; [DisplayName("Стоимость")] public double Price { get; set; } public int VendorId { get; set; } public Dictionary BuildComponents { get; set; } = new(); public List Comments { get; set; } = new(); } }