// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Event triggered when an executor handler has completed.
///
/// The unique identifier of the executor that has completed.
/// The result produced by the executor upon completion, or null if no result is available.
public sealed class ExecutorCompletedEvent(string executorId, object? result) : ExecutorEvent(executorId, data: result);