Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

42 lignes
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. }