mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
13 lines
301 B
C#
13 lines
301 B
C#
|
|
using Flow.Launcher.Plugin;
|
|||
|
|
|
|||
|
|
namespace Flow.Launcher.Core.Plugin;
|
|||
|
|
|
|||
|
|
public interface IResultUpdateRegister
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Register a plugin to receive results updated event.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="pair"></param>
|
|||
|
|
void RegisterResultsUpdatedEvent(PluginPair pair);
|
|||
|
|
}
|