25 lines
555 B
C#
25 lines
555 B
C#
using System.Text.Json.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LinkToolAddin.server
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
public partial class JsonRpcEntity
|
|
{
|
|
[JsonProperty("jsonrpc")]
|
|
public string Jsonrpc { get; set; }
|
|
|
|
[JsonProperty("method")]
|
|
public string Method { get; set; }
|
|
|
|
[JsonProperty("params")]
|
|
public Dictionary<string,string> Params { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public long Id { get; set; }
|
|
}
|
|
} |