Back to project page u2020.
The source code is released under:
Apache License
If you think the Android project u2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jakewharton.u2020.data.api.model; /*from ww w . j a v a2s . co m*/ public abstract class ImgurResponse { public final int status; public final boolean success; public ImgurResponse(int status, boolean success) { this.status = status; this.success = success; } }