mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add constructor for CustomPluginHotkey
This commit is contained in:
parent
c4ce8fe580
commit
476ad9be9b
1 changed files with 6 additions and 0 deletions
|
|
@ -8,6 +8,12 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
|||
public string Hotkey { get; set; }
|
||||
public string ActionKeyword { get; set; }
|
||||
|
||||
public CustomPluginHotkey(string hotkey, string actionKeyword)
|
||||
{
|
||||
Hotkey = hotkey;
|
||||
ActionKeyword = actionKeyword;
|
||||
}
|
||||
|
||||
public override bool Equals(object other)
|
||||
{
|
||||
if (other is CustomPluginHotkey otherHotkey)
|
||||
|
|
|
|||
Loading…
Reference in a new issue