mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
10 lines
148 B
C#
10 lines
148 B
C#
using System.Windows.Controls;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public interface ISettingProvider
|
|
{
|
|
Control CreateSettingPanel();
|
|
}
|
|
}
|