PowerToys/Wox.Plugin/ISettingProvider.cs
Yeechan Lu 80ec16b9bd Rename Wox.Plugin.System to Wox.Plugin.SystemPlugins
Finish moving ProgramSetting into featureBox
2014-03-29 15:52:57 +08:00

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();
}
}