PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/ViewModels/IngredientViewModel.cs
2024-05-15 21:14:04 +04:00

19 lines
525 B
C#

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; }
}
}