mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
13 lines
249 B
C#
13 lines
249 B
C#
using System;
|
|
using PropertyChanged;
|
|
|
|
namespace Wox.Core.UserSettings
|
|
{
|
|
[ImplementPropertyChanged]
|
|
public class CustomPluginHotkey
|
|
{
|
|
public string Hotkey { get; set; }
|
|
public string ActionKeyword { get; set; }
|
|
}
|
|
}
|