-
- 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 ErrorModel error { get; set; } = null;
- }
- }
|