PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/ViewModels/IngredientViewModel.cs

19 lines
525 B
C#
Raw Normal View History

2024-05-15 21:14:04 +04:00
using System.ComponentModel;
namespace SushiBarContracts.ViewModels
{
public class IngredientViewModel
{
public int Id { get; set; }
[DisplayName("Наименование ингредиента")]
public string IngredientName { get; set; } = string.Empty;
[DisplayName("Единицы измерения")]
public string Unit { get; set; } = string.Empty;
[DisplayName("Стоимость за единицу")]
public double Cost { get; set; }
}
}