using MessagePack; namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse { [MessagePackObject(keyAsPropertyName: true)] public class ErrorModel { public int code { get; set; } public string message { get; set; } public string devmsg { get; set; } public E data { get; set; } } }