mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
80ec16b9bd
Finish moving ProgramSetting into featureBox
14 lines
251 B
C#
14 lines
251 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; }
|
|
}
|
|
}
|