You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ShopNCook/Models/Recipe.cs

14 lines
391 B

using System.Collections.Immutable;
using System.Runtime.Serialization;
namespace Models
{
[DataContract]
public record Recipe(
[property: DataMember] RecipeInfo Info,
[property: DataMember] User Owner,
[property: DataMember] ImmutableList<Ingredient> Ingredients,
[property: DataMember] ImmutableList<PreparationStep> Steps
);
}