Flow.Launcher/Flow.Launcher.Plugin/ISettingProvider.cs

10 lines
158 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
using System.Windows.Controls;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin
{
public interface ISettingProvider
{
Control CreateSettingPanel();
}
}