mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
18 lines
319 B
C#
18 lines
319 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|