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