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