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

18 lines
404 B
C#
Raw Permalink Normal View History

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";
2020-12-17 09:37:01 +00:00
internal const string UpdateCommand = "update";
public bool WarnFromUnknownSource { get; set; } = true;
}
2020-12-29 06:49:11 +00:00
}