PowerToys/Wox.Core/UserSettings/PluginHotkey.cs

12 lines
214 B
C#

using System;
namespace Wox.Core.UserSettings
{
[Serializable]
public class CustomPluginHotkey
{
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
}
}