1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
- {
- public class ErrorJosnRPCResponse : BaseJosnRPCResponse
- {
- public ErrorJosnRPCResponse()
- {
- error = new ErrorModel();
- }
- public object result { get; set; } = null;
- public ErrorModel error { get; set; }
- }
- }
|