PIbd22_NikiforovaMV_Automob.../AutomobilePlantContracts/ViewModels/CarViewModel.cs

21 lines
612 B
C#
Raw Normal View History

2024-04-17 10:13:26 +04:00
using AutomobilePlantDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutomobilePlantContracts.ViewModels
{
public class CarViewModel : ICarModel
{
public int Id { get; set; }
[DisplayName("Название машины")]
public string CarName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> CarComponents { get; set; } = new();
}
}