package com.salama.android.developer;
public class AppInfo {
private String appServiceHttpUrl;
private String appServiceHttpsUrl;
private String myAppServiceHttpUrl;
private String myAppServiceHttpsUrl;
public String getAppServiceHttpUrl() {
return appServiceHttpUrl;
}
public void setAppServiceHttpUrl(String appServiceHttpUrl) {
this.appServiceHttpUrl = appServiceHttpUrl;
}
public String getAppServiceHttpsUrl() {
return appServiceHttpsUrl;
}
public void setAppServiceHttpsUrl(String appServiceHttpsUrl) {
this.appServiceHttpsUrl = appServiceHttpsUrl;
}
public String getMyAppServiceHttpUrl() {
return myAppServiceHttpUrl;
}
public void setMyAppServiceHttpUrl(String myAppServiceHttpUrl) {
this.myAppServiceHttpUrl = myAppServiceHttpUrl;
}
public String getMyAppServiceHttpsUrl() {
return myAppServiceHttpsUrl;
}
public void setMyAppServiceHttpsUrl(String myAppServiceHttpsUrl) {
this.myAppServiceHttpsUrl = myAppServiceHttpsUrl;
}
}