12345678910111213141516171819 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
- {
-
- public class DataJosnRPCResponse<T> : BaseJosnRPCResponse
- {
- public DataJosnRPCResponse() {
- result= new JsonRPCResult<T>();
- }
- public Dictionary<string, object> error { get; set; } = null;
- public JsonRPCResult<T> result { get; set; }
- public int code { get; set; } = 0;
- public string message { get; set; } = "Success";
- }
- }
|