Untitled
unknown
plain_text
4 years ago
441 B
5
Indexable
public class Ingredient { public int Id {get;set;} public string Name {get;set;} public int Kcal {get;set;} } public class IngredientRecipe { public int Id {get;set;} public int IngredientId {get;set;} public int RecipeId {get;set;} public int Value {get;set;} } public class Recipe { public int Id {get;set;} public string Name {get;set;} public List<IngredientRecipe> ListOfIngredients {get;set} }
Editor is loading...