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