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