12 lines
301 B
C#
12 lines
301 B
C#
|
namespace SushiBarContracts.BindingModels
|
|||
|
{
|
|||
|
public class DishBindingModel
|
|||
|
{
|
|||
|
public string DishName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Category { get; set;} = string.Empty;
|
|||
|
|
|||
|
public List<DishIngredientBindingModel> Ingredients { get; set; } = new();
|
|||
|
}
|
|||
|
}
|