mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
13 lines
331 B
C#
13 lines
331 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace AGUIDojoClient.Components.Demos.HumanInTheLoop;
|
|
|
|
/// <summary>
|
|
/// Result of user's plan confirmation decision.
|
|
/// </summary>
|
|
public class PlanConfirmationResult
|
|
{
|
|
public bool Confirmed { get; set; }
|
|
public List<int> SelectedStepIndices { get; set; } = [];
|
|
}
|