using MessagePack; using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse { [MessagePackObject(keyAsPropertyName: true)] public class DataJosnRPCResponse : BaseJosnRPCResponse { public DataJosnRPCResponse() { result= new JsonRPCResult(); } public JsonRPCResult result { get; set; } } }