added ReplayBundleResponse

This commit is contained in:
pinpong
2017-01-01 21:14:29 +01:00
parent 01538fe3c4
commit bf8e7aa122
2 changed files with 28 additions and 2 deletions
@@ -0,0 +1,24 @@
package jota.dto.response;
/**
* Created by pinpong on 01.01.17.
*/
public class ReplayBundleResponse extends AbstractResponse {
private Boolean successfully;
public static ReplayBundleResponse create(Boolean successfully) {
ReplayBundleResponse res = new ReplayBundleResponse();
res.successfully = successfully;
return res;
}
public Boolean getSuccessfully() {
return successfully;
}
public void setSuccessfully(Boolean successfully) {
this.successfully = successfully;
}
}