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

22 lines
505 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
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;
}
}
}