You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.3 KiB
Dart
26 lines
1.3 KiB
Dart
class ApiConsts {
|
|
//static String baseUrl = "http://10.200.204.20:2801/"; // Local server
|
|
// static String baseUrl = "http://20.203.25.82"; // production server
|
|
// static String baseUrl = "http://18.221.16.125"; // new production server
|
|
static String baseUrl = "https://www.tangheemalquran.com"; // new production server Words
|
|
static String baseUrlServices = baseUrl + "/services/"; // production server
|
|
// static String baseUrlServices = "https://api.cssynapses.com/tangheem/"; // Live server
|
|
static String authentication = baseUrlServices + "api/Authentication/";
|
|
static String tangheemUsers = baseUrlServices + "api/TangheemUsers/";
|
|
static String adminConfiguration = baseUrlServices + "api/AdminConfiguration/";
|
|
static String user = baseUrlServices + "api/User/";
|
|
}
|
|
|
|
class GlobalConsts {
|
|
static String isRememberMe = "remember_me";
|
|
static String email = "email";
|
|
static String password = "password";
|
|
static String bookmark = "bookmark";
|
|
static String fontZoomSize = "fontZoomSize";
|
|
static String fontZoomSizeQuran = "fontZoomSizeQuran";
|
|
static String fontZoomSizeTangheem = "fontZoomSizeTangheem";
|
|
static String welcomeVideoUrl = "welcomeVideoUrl";
|
|
static String doNotShowWelcomeVideo = "doNotShowWelcomeVideo";
|
|
static String userAuthData = "userAuthData";
|
|
}
|