// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Event triggered when a SuperStep started.
///
/// The zero-based index of the SuperStep associated with this event.
/// Debug information about the state of the system on SuperStep start.
public sealed class SuperStepStartedEvent(int stepNumber, SuperStepStartInfo? startInfo = null) : SuperStepEvent(stepNumber, data: startInfo)
{
///
/// Gets the debug information about the state of the system on SuperStep start.
///
public SuperStepStartInfo? StartInfo => startInfo;
}