PIbd-21_Kouvshinoff_T._A._A.../AutomobilePlant/AutomobilePlantContracts/ViewModels/CarViewModel.cs
2024-02-12 14:42:27 +04:00

26 lines
631 B
C#

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("Car's name")]
public string CarName { get; set; } = string.Empty;
[DisplayName("Price")]
public double Price { get; set; }
public Dictionary<int, (IComponentModel, int)> CarComponents
{
get;
set;
} = new();
}
}