PowerToys/WinAlfred.Plugin/IPlugin.cs
2014-01-03 23:52:36 +08:00

10 lines
196 B
C#

using System.Collections.Generic;
namespace WinAlfred.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init(PluginInitContext context);
}
}