mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
665 B
C#
17 lines
665 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Flow.Launcher.Infrastructure.Hotkey;
|
|
|
|
/// <summary>
|
|
/// Interface that you should implement in your settings class to be able to pass it to
|
|
/// <c>Flow.Launcher.HotkeyControlDialog</c>. It allows the dialog to display the hotkeys that have already been
|
|
/// registered, and optionally provide a way to unregister them.
|
|
/// </summary>
|
|
public interface IHotkeySettings
|
|
{
|
|
/// <summary>
|
|
/// A list of hotkeys that have already been registered. The dialog will display these hotkeys and provide a way to
|
|
/// unregister them.
|
|
/// </summary>
|
|
public List<RegisteredHotkeyData> RegisteredHotkeys { get; }
|
|
}
|