Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IPluginHotkey.cs

17 lines
465 B
C#
Raw Normal View History

2025-06-25 12:24:50 +00:00
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>
2025-07-06 12:29:19 +00:00
List<BasePluginHotkey> GetPluginHotkeys();
2025-06-25 12:24:50 +00:00
}
}