Add Executable Plugin Loader

This commit is contained in:
qianlifeng
2014-07-05 23:10:34 +08:00
parent f01de3a69d
commit 659ff866e1
17 changed files with 850 additions and 542 deletions

17
Wox/RPC/JsonPRCModel.cs Normal file
View File

@@ -0,0 +1,17 @@
using Wox.Plugin;
namespace Wox.RPC
{
public class JsonPRCModel
{
public int id { get; set; }
public string jsonrpc { get; set; }
public string result { get; set; }
}
public class ActionJsonRPCResult : Result
{
public string ActionJSONRPC { get; set; }
}
}