Flow.Launcher/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs
2020-04-21 21:27:02 +10:00

10 lines
241 B
C#

using Flow.Launcher.Plugin;
namespace Flow.Launcher.Infrastructure.UserSettings
{
public class CustomPluginHotkey : BaseModel
{
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
}
}