// Copyright (c) Microsoft. All rights reserved.
namespace AGUIDojoClient.Components.Demos.HumanInTheLoop;
///
/// Result of user's plan confirmation decision.
///
public class PlanConfirmationResult
{
public bool Confirmed { get; set; }
public List SelectedStepIndices { get; set; } = [];
}