mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
11 lines
211 B
C#
11 lines
211 B
C#
using Wox.Plugin;
|
|
|
|
namespace Wox.Core.UserSettings
|
|
{
|
|
public class CustomPluginHotkey : BaseModel
|
|
{
|
|
public string Hotkey { get; set; }
|
|
public string ActionKeyword { get; set; }
|
|
}
|
|
}
|