using System.Collections.Immutable; namespace Models { public record Recipe( RecipeInfo Info, User Owner, ImmutableList Ingredients, ImmutableList Steps); }