PowerToys/Wox.Core/UserSettings/PluginHotkey.cs

13 lines
249 B
C#
Raw Normal View History

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