Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs

16 lines
413 B
C#
Raw Normal View History

2023-04-25 12:04:08 +00:00
namespace Flow.Launcher.Plugin.PluginsManager
{
internal class Settings
{
internal const string InstallCommand = "install";
internal const string UninstallCommand = "uninstall";
2020-12-17 09:37:01 +00:00
internal const string UpdateCommand = "update";
public bool WarnFromUnknownSource { get; set; } = true;
public bool AutoRestartAfterChanging { get; set; } = false;
}
2020-12-29 06:49:11 +00:00
}