2020-12-14 10:05:32 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Flow.Launcher.Plugin.PluginsManager
|
|
|
|
|
|
{
|
|
|
|
|
|
internal class Settings
|
|
|
|
|
|
{
|
2022-01-12 21:48:16 +00:00
|
|
|
|
internal const string InstallCommand = "install";
|
2021-11-21 05:09:49 +00:00
|
|
|
|
|
2022-01-12 21:48:16 +00:00
|
|
|
|
internal const string UninstallCommand = "uninstall";
|
2020-12-17 09:37:01 +00:00
|
|
|
|
|
2022-01-12 21:48:16 +00:00
|
|
|
|
internal const string UpdateCommand = "update";
|
2021-11-21 05:09:49 +00:00
|
|
|
|
|
|
|
|
|
|
public bool WarnFromUnknownSource { get; set; } = true;
|
2020-12-14 10:05:32 +00:00
|
|
|
|
}
|
2020-12-29 06:49:11 +00:00
|
|
|
|
}
|