PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/ViewModels/ComponentViewModel.cs
Катя Ихонкина f1a5244eef Коммит1
2023-02-19 11:27:59 +04:00

21 lines
556 B
C#

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