Flow.Launcher/Plugins/Flow.Launcher.Plugin.Url/URLSettings.xaml.cs
2025-10-09 10:36:42 +02:00

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();
}
}