mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
80ec16b9bd
Finish moving ProgramSetting into featureBox
14 lines
234 B
C#
14 lines
234 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Wox.Plugin
|
|
{
|
|
public interface ISettingProvider
|
|
{
|
|
Control CreateSettingPanel();
|
|
}
|
|
}
|