PIbd-22_Kamcharova_K.A_Reno.../RenovationWorkContracts/ViewModels/ComponentViewModel.cs
2024-04-17 09:22:08 +04:00

22 lines
545 B
C#

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