PowerToys/Wox.Plugin/IPlugin.cs

10 lines
190 B
C#
Raw Normal View History

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