2024-05-15 21:37:18 +04:00
|
|
|
|
namespace SushiBarContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class DishBindingModel
|
|
|
|
|
{
|
2024-05-16 17:13:55 +04:00
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
2024-05-15 21:37:18 +04:00
|
|
|
|
public string DishName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Category { get; set;} = string.Empty;
|
|
|
|
|
|
|
|
|
|
public List<DishIngredientBindingModel> Ingredients { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|