Flow.Launcher/Flow.Launcher.Plugin/Interfaces/ISettingProvider.cs
2025-02-24 15:37:13 +08:00

16 lines
404 B
C#

using System.Windows.Controls;
namespace Flow.Launcher.Plugin
{
/// <summary>
/// This interface is used to create settings panel for .Net plugins
/// </summary>
public interface ISettingProvider
{
/// <summary>
/// Create settings panel control for .Net plugins
/// </summary>
/// <returns></returns>
Control CreateSettingPanel();
}
}