mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
Added Enabled & PluginId to BaseSystemPlugin
We still need a way to save the Enabled property
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user