PowerToys/Wox.Core/UserSettings/PluginHotkey.cs

12 lines
214 B
C#
Raw Normal View History

using System;
namespace Wox.Core.UserSettings
2014-03-23 16:20:00 +08:00
{
[Serializable]
2014-03-23 16:20:00 +08:00
public class CustomPluginHotkey
{
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
}
}