ISEbd-22_Zenina_E.S._Comput.../ComputersShop/ComputersShopContracts/ViewModels/ComponentViewModel.cs
2024-05-03 20:17:56 +04:00

21 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ComputersShopDataModels.Models;
using System.ComponentModel;
namespace ComputersShopContracts.ViewModels
{
public class ComponentViewModel : IComponentModel
{
public int Id { get; set; }
[DisplayName("Название компонента")]
public string ComponentName { get; set; } = string.Empty;
[DisplayName("Цена")]
public double Cost { get; set; }
}
}