using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShoopNCook.Core { internal class Recipe { private readonly RecipeInformation info; private readonly User owner; private readonly List ingredients; private readonly List steps; public Recipe( RecipeInformation info, User owner, List ingredients, List steps) { this.info = info; this.owner = owner; this.ingredients = ingredients; this.steps = steps; } public RecipeInformation Info { get => info; } public User Owner { get => owner; } public List Ingredients { get => ingredients; } public List Steps { get => steps; } } }