From 3dbef1400c4de97fcf8ebb4b3952b4eff4a19b35 Mon Sep 17 00:00:00 2001 From: qianlifeng Date: Sun, 23 Mar 2014 16:20:00 +0800 Subject: [PATCH] Refactor setting storage related --- Wox.Infrastructure/Storage/UserSettings/PluginHotkey.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Wox.Infrastructure/Storage/UserSettings/PluginHotkey.cs diff --git a/Wox.Infrastructure/Storage/UserSettings/PluginHotkey.cs b/Wox.Infrastructure/Storage/UserSettings/PluginHotkey.cs new file mode 100644 index 000000000..1547a213d --- /dev/null +++ b/Wox.Infrastructure/Storage/UserSettings/PluginHotkey.cs @@ -0,0 +1,8 @@ +namespace Wox.Infrastructure.Storage.UserSettings +{ + public class CustomPluginHotkey + { + public string Hotkey { get; set; } + public string ActionKeyword { get; set; } + } +}