namespace Models { public class Recipe { public RecipeInfo Info { get; init; } public User Owner { get; init; } public List Ingredients { get; init; } public List Steps { get; init; } public Recipe( RecipeInfo info, User owner, List ingredients, List steps) { Info = info; Owner = owner; Ingredients = ingredients; Steps = steps; } } }