mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
16 lines
464 B
C#
16 lines
464 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Flow.Launcher.Plugin
|
|
{
|
|
/// <summary>
|
|
/// Represent plugins that support global hotkey or search window hotkey.
|
|
/// </summary>
|
|
public interface IPluginHotkey : IFeatures
|
|
{
|
|
/// <summary>
|
|
/// Get the list of plugin hotkeys which will be registered in the settings page.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<BasePluginHotkey> GetPuginHotkeys();
|
|
}
|
|
}
|