-
- using System.Collections.Generic;
- namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
- {
-
-
- public class ErrorModel {
- public int code { get; set; }
- public string message { get; set; }
- public Dictionary<string, object> data { get; set; } = null;
- }
- }
|