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.

21 lines
721 B

1 year ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GMCabsDriverAssistant.Utils
  5. {
  6. public static class Constant
  7. {
  8. public const int DRIVERAPP = 3;
  9. public const int DRIVER_STATUS_ON_TRIP = 3;
  10. public const int DRIVER_STATUS_AVAILABLE = 2;
  11. public static bool IS_NOT_REDIRCT_TO_HOME = true;
  12. public const int TIMER_SECONDS = 15;
  13. public const int TIMER_MINUTES = 15;
  14. public const int SUCCESS_CODE = 200;
  15. public const int UNAUTHORIZED_CODE = 401;
  16. public const int BADREQUEST_CODE = 400;
  17. public const string FROM_PERMISSION_PAGE = "PermissionPage";
  18. public const string FROM_HOME_PAGE = "HomePage";
  19. }
  20. }