mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
17 lines
319 B
C#
17 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; }
|
|
}
|
|
}
|