// Copyright (c) Microsoft. All rights reserved.
namespace AGUIDojoClient.Components.Demos.PredictiveStateUpdates;
///
/// Represents the result of the confirm_changes frontend tool.
///
public sealed class ConfirmChangesResult
{
///
/// Gets or sets a value indicating whether the user confirmed the changes.
///
public bool Confirmed { get; set; }
}