Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
VictoriousRaptor 1334798c6d Add AutoRestartAfterChanging option
- Option and UI
- New prompts and notification messages
2023-09-29 13:06:42 +08:00

15 lines
413 B
C#

namespace Flow.Launcher.Plugin.PluginsManager
{
internal class Settings
{
internal const string InstallCommand = "install";
internal const string UninstallCommand = "uninstall";
internal const string UpdateCommand = "update";
public bool WarnFromUnknownSource { get; set; } = true;
public bool AutoRestartAfterChanging { get; set; } = false;
}
}