Untitled
Anonymous
plain_text
01/18/2021 5:58 PM
588 B
17
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...