package com.mossle.internal.sendsms.support; public class SmsDTO { private String mobile; private String message; private boolean success; private String result; private Throwable throwable; public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public boolean isSuccess() { return success; } public void setSuccess(boolean success) { this.success = success; } public String getResult() { return result; } public void setResult(String result) { this.result = result; } public Throwable getThrowable() { return throwable; } public void setThrowable(Throwable throwable) { this.throwable = throwable; } }