PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopContracts/ViewModels/ComputerViewModel.cs

28 lines
679 B
C#
Raw Normal View History

2024-02-05 20:36:39 +04:00
using ComputersShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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<int, (IComponentModel, int)> ComputerComponents
{
get;
set;
} = new();
}
}