PIbd-22_Shabunov_O.A._SushiBar/SushiBarContracts/BindingModels/DishBindingModel.cs
2024-05-16 17:13:55 +04:00

14 lines
338 B
C#

namespace SushiBarContracts.BindingModels
{
public class DishBindingModel
{
public int Id { get; set; }
public string DishName { get; set; } = string.Empty;
public string Category { get; set;} = string.Empty;
public List<DishIngredientBindingModel> Ingredients { get; set; } = new();
}
}