mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 11:09:28 +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; }
|
|
}
|
|
}
|