#nullable enable
using System.ComponentModel;
namespace Terminal.Gui;
///
/// Event arguments for events.
///
public class CommandEventArgs : CancelEventArgs
{
///
/// The context for the command, if any.
///
///
/// If the command was invoked without context.
///
public required ICommandContext? Context { get; init; }
}