devutility.internal.models.BaseListResponseWithToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Some utilities for Java development
package devutility.internal.models;
public class BaseListResponseWithToken extends BaseListResponse {
private String token;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
}