using System.ComponentModel;
namespace Terminal.Gui.Input;
///
/// Event arguments for events. Set to
/// to indicate a command was handled.
///
public class CommandEventArgs : HandledEventArgs
{
///
/// The context for the command, if any.
///
///
/// If the command was invoked without context.
///
public required ICommandContext? Context { get; init; }
}