ErrorModel.cs 267 B

123456789101112131415
  1. 
  2. using System.Collections.Generic;
  3. namespace TEAMModelOS.SDK
  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. }
  10. }