// Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; namespace AGUIDojoClient.Components.Demos.SharedState; public sealed class RecipeResponse { [JsonPropertyName("recipe")] public Recipe Recipe { get; set; } = new(); }