PowerToys/Wox.Infrastructure/UserSettings/PluginHotkey.cs

11 lines
221 B
C#
Raw Normal View History

using Wox.Plugin;
2016-06-19 23:18:43 +08:00
namespace Wox.Infrastructure.UserSettings
2014-03-23 16:20:00 +08:00
{
public class CustomPluginHotkey : BaseModel
2014-03-23 16:20:00 +08:00
{
public string Hotkey { get; set; }
public string ActionKeyword { get; set; }
}
}