using System.Collections.Generic;
namespace Flow.Launcher.Plugin
{
///
/// Represent plugins that support global hotkey or search window hotkey.
///
public interface IPluginHotkey : IFeatures
{
///
/// Get the list of plugin hotkeys which will be registered in the settings page.
///
///
List GetPluginHotkeys();
}
}