// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Sent to an -based executor to request
/// a response to accumulated .
///
/// Whether to raise AgentRunEvents for this executor.
public class TurnToken(bool? emitEvents = null)
{
///
/// Gets a value indicating whether events are emitted by the receiving executor. If the
/// value is not set, defaults to the configuration in the executor.
///
public bool? EmitEvents => emitEvents;
}