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

using System;
using System.Collections.Generic;
using System.Text;
namespace GMCabsDriverAssistant.Utils
{
public static class Constant
{
public const int DRIVERAPP = 3;
public const int DRIVER_STATUS_ON_TRIP = 3;
public const int DRIVER_STATUS_AVAILABLE = 2;
public static bool IS_NOT_REDIRCT_TO_HOME = true;
public const int TIMER_SECONDS = 15;
public const int TIMER_MINUTES = 15;
public const int SUCCESS_CODE = 200;
public const int UNAUTHORIZED_CODE = 401;
public const int BADREQUEST_CODE = 400;
public const string FROM_PERMISSION_PAGE = "PermissionPage";
public const string FROM_HOME_PAGE = "HomePage";
}
}