mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Files
92a2b83bc809960102c881977e8b8c9b1692c699
12 lines
253 B
C#
12 lines
253 B
C#
using Microsoft.PowerToys.Settings.UI.Lib;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace Wox.Plugin
|
||||
{
|
||||
public interface ISettingProvider
|
||||
{
|
||||
Control CreateSettingPanel();
|
||||
void UpdateSettings(PowerLauncherSettings settings);
|
||||
}
|
||||
}
|