Flow.Launcher/Flow.Launcher.Plugin/Interfaces/ISettingProvider.cs
2021-07-08 07:45:15 +10:00

9 lines
158 B
C#

using System.Windows.Controls;
namespace Flow.Launcher.Plugin
{
public interface ISettingProvider
{
Control CreateSettingPanel();
}
}