#nullable enable
namespace Terminal.Gui;
///
/// 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.
///
/// .
public interface ICommandContext
{
///
/// The that is being invoked.
///
public Command Command { get; set; }
}