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