theme changed

This commit is contained in:
2019-11-24 15:39:52 +03:00
parent b0af25dbc0
commit e1d9544f23
167 changed files with 741 additions and 983 deletions

View File

@@ -0,0 +1,28 @@
package ch.pizzaleu.android.api;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
/**
* Created by cimenmus on 22.10.2017.
*/
public class BaseResponse implements Serializable {
@SerializedName("success") private boolean success;
@SerializedName("message") private String message;
@SerializedName("error_code") private int errorCode;
public boolean isSuccess() {
return success;
}
public String getMessage() {
return message;
}
public int getErrorCode() {
return errorCode;
}
}