PowerToys/Wox.Plugin.System/ISystemPlugin.cs
2014-01-29 18:33:24 +08:00

14 lines
244 B
C#

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