mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
15 lines
415 B
C#
15 lines
415 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace AGUIDojoClient.Components.Demos.PredictiveStateUpdates;
|
|
|
|
/// <summary>
|
|
/// Represents the result of the confirm_changes frontend tool.
|
|
/// </summary>
|
|
public sealed class ConfirmChangesResult
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the user confirmed the changes.
|
|
/// </summary>
|
|
public bool Confirmed { get; set; }
|
|
}
|