#nullable enable
namespace Terminal.Gui;
#pragma warning disable CS1574 // XML comment has cref attribute that could not be resolved
///
/// Describes the context in which a is being invoked. inherits from this interface.
/// When a is invoked,
/// a context object is passed to Command handlers as an reference.
///
/// .
#pragma warning restore CS1574 // XML comment has cref attribute that could not be resolved
public interface ICommandContext
{
///
/// The that is being invoked.
///
public Command Command { get; set; }
}