PowerToys/Wox.Plugin/IPlugin.cs

13 lines
269 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);
/// <summary>
/// Used when saving Plug-in settings
/// </summary>
string PluginId { get; }
}
2013-12-19 23:51:20 +08:00
}