Files
PowerToys/Wox.Plugin/IPlugin.cs
Aaron Campf 4c3f51cae3 Added Enabled & PluginId to BaseSystemPlugin
We still need a way to save the Enabled property
2014-05-24 18:57:02 -07:00

13 lines
269 B
C#

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; }
}
}