PIbd-21_Ihonkina_E.S._Preca.../PrecastConcretePlantContracts/ViewModels/ComponentViewModel.cs

21 lines
556 B
C#
Raw Permalink Normal View History

2023-02-19 11:27:59 +04:00
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; }
}
}