// Copyright (c) Microsoft. All rights reserved. using System.Text.Json.Serialization; namespace AGUIDojoServer.AgenticUI; internal sealed class Plan { [JsonPropertyName("steps")] public List Steps { get; set; } = []; }