Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginsManager/Settings.cs
Jeremy a07252cc04 add ability to switch off warning when unknown source
fixed search terms to show with out to lower
2021-11-21 16:09:49 +11:00

17 lines
425 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Flow.Launcher.Plugin.PluginsManager
{
internal class Settings
{
internal string HotKeyInstall { get; set; } = "install";
internal string HotkeyUninstall { get; set; } = "uninstall";
internal string HotkeyUpdate { get; set; } = "update";
public bool WarnFromUnknownSource { get; set; } = true;
}
}