Flow.Launcher/Flow.Launcher.Infrastructure/UserSettings/PluginHotkey.cs
2025-07-02 12:57:22 +08:00

23 lines
519 B
C#

using Flow.Launcher.Plugin;
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 ActionKeyword { get; set; }
}
}