using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK { public class DataJsonResponse : BaseResponse { public DataJsonResponse() { result= new JsonRPCResult(); } public Dictionary error { get; set; } = null; public JsonRPCResult result { get; set; } public int code { get; set; } = 0; public string message { get; set; } = "Success"; } }