mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
22 lines
518 B
C#
22 lines
518 B
C#
|
|
using Flow.Launcher.Plugin.PluginsManager.ViewModels;
|
|
|
|
namespace Flow.Launcher.Plugin.PluginsManager.Views
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for PluginsManagerSettings.xaml
|
|
/// </summary>
|
|
public partial class PluginsManagerSettings
|
|
{
|
|
private readonly SettingsViewModel viewModel;
|
|
|
|
public PluginsManagerSettings(SettingsViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.viewModel = viewModel;
|
|
|
|
//RefreshView();
|
|
}
|
|
}
|
|
}
|