Flow.Launcher/Flow.Launcher.Core/Plugin/IResultUpdateRegister.cs

13 lines
301 B
C#
Raw Normal View History

2025-07-21 05:52:11 +00:00
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);
}