PowerToys/WinAlfred.Plugin/IPlugin.cs

10 lines
196 B
C#
Raw Normal View History

2013-12-19 15:51:20 +00:00
using System.Collections.Generic;
namespace WinAlfred.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
2014-01-03 15:52:36 +00:00
void Init(PluginInitContext context);
2013-12-19 15:51:20 +00:00
}
}