Flow.Launcher/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs

11 lines
241 B
C#
Raw Permalink Normal View History

2020-04-21 09:12:17 +00:00
using Flow.Launcher.Plugin;
2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Infrastructure.UserSettings
2014-03-23 08:20:00 +00:00
{
public class CustomPluginHotkey : BaseModel
2014-03-23 08:20:00 +00:00
{
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
}
}