mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
4c3f51cae3
We still need a way to save the Enabled property
12 lines
229 B
C#
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; }
|
|
}
|
|
}
|