Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- using System;
-
- namespace SUISS.Cloud
- {
- public class ApiError
- {
- public string Error { get; set; }
-
- public int ErrorCode { get; set; }
-
- public int Status { get; set; }
-
- public bool ServerError
- {
- get
- {
- return this._isServerError;
- }
- set
- {
- this._isServerError = value;
- }
- }
-
- public bool NoInternet
- {
- get
- {
- return this._noInternet;
- }
- set
- {
- this._noInternet = value;
- }
- }
-
- private bool _isServerError;
-
- private bool _noInternet;
- }
- }
|