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

24 lines
519 B
C#
Raw 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
{
private string _hotkey = string.Empty;
public string Hotkey
{
get => _hotkey;
set
{
if (_hotkey != value)
{
_hotkey = value;
OnPropertyChanged();
}
}
}
2014-03-23 08:20:00 +00:00
public string ActionKeyword { get; set; }
}
}