using System.ComponentModel; namespace SushiBarContracts.ViewModels { public class DishIngredientViewModel { public int DishId { get; set; } public int IngredientId { get; set; } [DisplayName("Наименование ингредиента")] public string IngredientName { get; set; } = string.Empty; [DisplayName("Количество")] public int Count { get; set; } } }