using System.Collections.Generic;
namespace Flow.Launcher.Infrastructure.Hotkey;
///
/// Interface that you should implement in your settings class to be able to pass it to
/// Flow.Launcher.HotkeyControlDialog. It allows the dialog to display the hotkeys that have already been
/// registered, and optionally provide a way to unregister them.
///
public interface IHotkeySettings
{
///
/// A list of hotkeys that have already been registered. The dialog will display these hotkeys and provide a way to
/// unregister them.
///
public List RegisteredHotkeys { get; }
}