PowerToys/Wox.Plugin/IPlugin.cs

10 lines
190 B
C#
Raw Normal View History

2013-12-19 15:51:20 +00:00
using System.Collections.Generic;
2014-01-29 10:33:24 +00:00
namespace Wox.Plugin
2013-12-19 15:51:20 +00:00
{
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
}
}