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