ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/ViewModels/ComponentViewModel.cs
Максим Куклев 97b9443a66 загрузил
2024-04-07 16:54:02 +04:00

20 lines
555 B
C#

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