PowerToys/Wox.Plugin.SystemPlugins/ISystemPlugin.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

12 lines
229 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Wox.Plugin.SystemPlugins {
public interface ISystemPlugin : IPlugin {
string Name { get; }
string Description { get; }
}
}