ErrorModel.cs 354 B

1234567891011121314151617
  1. 
  2. using System.Collections.Generic;
  3. namespace TEAMModelOS.SDK.Extension.DataResult.JsonRpcResponse
  4. {
  5. public class ErrorModel {
  6. public int code { get; set; }
  7. public string message { get; set; }
  8. public Dictionary<string, object> data { get; set; } = null;
  9. // public string devmsg { get; set; }
  10. }
  11. }