34 lines
602 B
Java
34 lines
602 B
Java
package ch.pizzapp.android.model;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/**
|
|
* Created by cimenmus on 22.10.2017.
|
|
*/
|
|
|
|
public class AppVersionModel {
|
|
|
|
@Expose
|
|
@SerializedName("application")
|
|
private String appType;
|
|
|
|
private int version;
|
|
|
|
public String getAppType() {
|
|
return appType;
|
|
}
|
|
|
|
public void setAppType(String appType) {
|
|
this.appType = appType;
|
|
}
|
|
|
|
public int getVersion() {
|
|
return version;
|
|
}
|
|
|
|
public void setVersion(int version) {
|
|
this.version = version;
|
|
}
|
|
}
|