mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
21 lines
558 B
C#
21 lines
558 B
C#
namespace Flow.Launcher.Plugin.PluginsManager.ViewModels
|
|
{
|
|
internal class SettingsViewModel
|
|
{
|
|
internal Settings Settings { get; set; }
|
|
|
|
internal PluginInitContext Context { get; set; }
|
|
|
|
public SettingsViewModel(PluginInitContext context, Settings settings)
|
|
{
|
|
Context = context;
|
|
Settings = settings;
|
|
}
|
|
|
|
public bool WarnFromUnknownSource
|
|
{
|
|
get => Settings.WarnFromUnknownSource;
|
|
set => Settings.WarnFromUnknownSource = value;
|
|
}
|
|
}
|
|
}
|