app id changed

This commit is contained in:
2020-04-18 22:58:14 +03:00
parent 8aa1cb3bfb
commit 8e4f53ed9a
136 changed files with 705 additions and 705 deletions

View File

@@ -0,0 +1,47 @@
package ch.pizzacucina.android.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
public class CampaignBannerModel implements Serializable {
@Expose
@SerializedName("title")
private String title;
@Expose
@SerializedName("image")
private String imageUrl;
@Expose
@SerializedName("order")
private String order;
@Expose
@SerializedName("status")
private boolean active;
public String getTitle() {
return title;
}
public String getImageUrl() {
if(imageUrl == null){
imageUrl = "";
}
return imageUrl;
}
public String getOrder() {
if(order == null){
order = "0";
}
return order;
}
public boolean isActive() {
return active;
}
}