mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-31 02:08:03 +01:00
14 lines
369 B
C#
14 lines
369 B
C#
#nullable enable
|
|
namespace Terminal.Gui;
|
|
|
|
/// <summary>
|
|
/// Describes an input binding. Used to bind a set of <see cref="Command"/> objects to a specific input event.
|
|
/// </summary>
|
|
public interface IInputBinding
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the commands this input binding will invoke.
|
|
/// </summary>
|
|
Command [] Commands { get; set; }
|
|
}
|