// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Event triggered when an executor handler is invoked.
///
/// The unique identifier of the executor being invoked.
/// The invocation message.
public sealed class ExecutorInvokedEvent(string executorId, object message) : ExecutorEvent(executorId, data: message);