PIbd-22_Kaznacheeva.E.K._So.../SoftwareInstallation/SoftwareInstallationContracts/ViewModels/ComponentViewModel.cs
2024-02-27 23:44:38 +04:00

21 lines
556 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; }
}
}