16 lines
364 B
C#
16 lines
364 B
C#
namespace LinkToolAddin.server
|
|
{
|
|
using Newtonsoft.Json;
|
|
|
|
public partial class JsonRpcSuccessEntity : JsonRpcResultEntity
|
|
{
|
|
[JsonProperty("jsonrpc")]
|
|
public string Jsonrpc { get; set; }
|
|
|
|
[JsonProperty("result")]
|
|
public string Result { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
}
|
|
} |