PowerToys/Wox.Core/UserSettings/PluginHotkey.cs
2016-05-25 01:03:43 +01:00

13 lines
249 B
C#

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