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