mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
431 B
C#
17 lines
431 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
|
|
{
|
|
internal PluginsManagerSettings(SettingsViewModel viewModel)
|
|
{
|
|
InitializeComponent();
|
|
|
|
DataContext = viewModel;
|
|
}
|
|
}
|
|
}
|