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