mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
13 lines
336 B
C#
13 lines
336 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;
|
|
}
|
|
}
|