// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Agents.AI.Workflows;
///
/// Event triggered when a workflow encounters a warning-condition.
///
/// The warning message.
public class WorkflowWarningEvent(string message) : WorkflowEvent(message);