mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 02:39:22 +08:00
15 lines
281 B
C#
15 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Wox.Plugin.SystemPlugins
|
|
{
|
|
public interface ISystemPlugin : IPlugin
|
|
{
|
|
string ID { get; }
|
|
string Name { get; }
|
|
string Description { get; }
|
|
}
|
|
}
|