Revert "Add property changed for CustomPluginHotkey"

This reverts commit 1d2aa96dcc.
This commit is contained in:
Jack251970 2025-07-02 14:34:00 +08:00
parent fd3eef46f4
commit 96e8eae83e

View file

@ -5,20 +5,7 @@ namespace Flow.Launcher.Infrastructure.UserSettings
{
public class CustomPluginHotkey : BaseModel
{
private string _hotkey = string.Empty;
public string Hotkey
{
get => _hotkey;
set
{
if (_hotkey != value)
{
_hotkey = value;
OnPropertyChanged();
}
}
}
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
public override bool Equals(object other)