PowerToys/Wox.Plugin/IPlugin.cs

10 lines
190 B
C#
Raw Normal View History

2013-12-19 23:51:20 +08:00
using System.Collections.Generic;
namespace Wox.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init(PluginInitContext context);
}
2013-12-19 23:51:20 +08:00
}