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