mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add property changed for CustomPluginHotkey
This commit is contained in:
parent
afdb56df44
commit
1d2aa96dcc
1 changed files with 14 additions and 1 deletions
|
|
@ -4,7 +4,20 @@ namespace Flow.Launcher.Infrastructure.UserSettings
|
||||||
{
|
{
|
||||||
public class CustomPluginHotkey : BaseModel
|
public class CustomPluginHotkey : BaseModel
|
||||||
{
|
{
|
||||||
public string Hotkey { get; set; }
|
private string _hotkey = string.Empty;
|
||||||
|
public string Hotkey
|
||||||
|
{
|
||||||
|
get => _hotkey;
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (_hotkey != value)
|
||||||
|
{
|
||||||
|
_hotkey = value;
|
||||||
|
OnPropertyChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public string ActionKeyword { get; set; }
|
public string ActionKeyword { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue