Added Enabled & PluginId to BaseSystemPlugin

We still need a way to save the Enabled property
This commit is contained in:
Aaron Campf
2014-05-24 18:57:02 -07:00
parent f3088d1c49
commit 4c3f51cae3
4 changed files with 31 additions and 18 deletions

View File

@@ -1,10 +1,13 @@
using System.Collections.Generic;
namespace Wox.Plugin
{
public interface IPlugin
{
List<Result> Query(Query query);
void Init(PluginInitContext context);
}
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; }
}
}