Back to project page ChattyOwl.
The source code is released under:
MIT License
If you think the Android project ChattyOwl 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.znupy.chattyowl.network; /* www . ja v a2 s. c o m*/ /** * Created by samok on 27/07/14. */ public class BaseResponse { public boolean success; public String message; @Override public String toString() { return "BaseResponse (" + success + ") " + message; } }