ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationContracts/ViewModels/ComponentViewModel.cs
Максим Куклев 757c1ea0f0 загрузил
2024-05-12 14:45:39 +04:00

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