Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
Ioannis G a0bb995643
PluginsManager: refactor sub-commands
Rename them to something more accurate, switch them to be const
2022-01-12 23:48:16 +02:00

17 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Text;
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;
}
}