// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Event triggered when a workflow starts execution.
///
/// The message triggering the start of workflow execution.
public sealed class WorkflowStartedEvent(object? message = null) : WorkflowEvent(data: message);