using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace JsonRPC4.Common { public static class JsonRpcContants { public const string VersionPropertyName = "jsonrpc"; public const string MethodPropertyName = "method"; public const string ParamsPropertyName = "params"; public const string IdPropertyName = "id"; public const string ResultPropertyName = "result"; public const string ErrorPropertyName = "error"; public const string ErrorCodePropertyName = "code"; public const string ErrorMessagePropertyName = "message"; public const string ErrorDataPropertyName = "data"; } }