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

15 lines
359 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 string HotKeyInstall { get; set; } = "install";
2020-12-17 09:37:01 +00:00
internal string HotkeyUninstall { get; set; } = "uninstall";
internal string HotkeyUpdate { get; set; } = "update";
}
2020-12-29 06:49:11 +00:00
}