Skip to content

Instantly share code, notes, and snippets.

@chrisegb
Created May 7, 2020 02:01
Show Gist options
  • Save chrisegb/da587b6131b91374b2df7bcc86ded25c to your computer and use it in GitHub Desktop.
Save chrisegb/da587b6131b91374b2df7bcc86ded25c to your computer and use it in GitHub Desktop.
public class Response {
private boolean success;
private String message;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public void setSuccess(boolean success) {
this.success = success;
}
public boolean getSuccess() {
return success;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment