PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarContracts/ViewModels/ComponentViewModel.cs

22 lines
549 B
C#
Raw Normal View History

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