You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

42 lines
542 B

  1. using System;
  2. namespace SUISS.Cloud
  3. {
  4. public class ApiError
  5. {
  6. public string Error { get; set; }
  7. public int ErrorCode { get; set; }
  8. public int Status { get; set; }
  9. public bool ServerError
  10. {
  11. get
  12. {
  13. return this._isServerError;
  14. }
  15. set
  16. {
  17. this._isServerError = value;
  18. }
  19. }
  20. public bool NoInternet
  21. {
  22. get
  23. {
  24. return this._noInternet;
  25. }
  26. set
  27. {
  28. this._noInternet = value;
  29. }
  30. }
  31. private bool _isServerError;
  32. private bool _noInternet;
  33. }
  34. }