Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.mobileapi.serving.pojos;public class NotificationPojo {private String message;private String status;private String redirectUrl;public void setMessage(String message) {this.message = message;}public String getMessage() {return message;}public void setStatus(String status) {this.status = status;}public String getStatus() {return status;}public void setRedirectUrl(String redirectUrl) {this.redirectUrl = redirectUrl;}public String getRedirectUrl() {return redirectUrl;}}