com.jiuxian.mossrose.ui.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mossrose-ui Show documentation
Show all versions of mossrose-ui Show documentation
User Interface for Mossrose
package com.jiuxian.mossrose.ui;
public class Response {
private int code;
private T body;
protected Response(int code, T body) {
super();
this.code = code;
this.body = body;
}
public int getCode() {
return code;
}
public T getBody() {
return body;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy