mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
15 lines
348 B
C#
15 lines
348 B
C#
using System.Windows.Controls;
|
|
|
|
namespace Flow.Launcher.Plugin.Url;
|
|
|
|
public partial class URLSettings : UserControl
|
|
{
|
|
private readonly SettingsViewModel _viewModel;
|
|
|
|
public URLSettings(Settings settings)
|
|
{
|
|
_viewModel = new SettingsViewModel(settings);
|
|
DataContext = _viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|