Flow.Launcher/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs

19 lines
438 B
C#
Raw Normal View History

2023-04-25 12:04:08 +00:00
using System.Windows.Controls;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin.Url
{
public partial class SettingsControl : UserControl
{
private Settings _settings;
2020-04-21 12:54:41 +00:00
private IPublicAPI _flowlauncherAPI;
2020-04-21 12:54:41 +00:00
public SettingsControl(IPublicAPI flowlauncherAPI,Settings settings)
{
InitializeComponent();
_settings = settings;
2020-04-21 12:54:41 +00:00
_flowlauncherAPI = flowlauncherAPI;
}
}
}