Back to project page HotSpot_Android.
The source code is released under:
GNU General Public License
If you think the Android project HotSpot_Android 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.ticknardif.hotspot.RESTresponses; /*from w w w. j a v a2s . c o m*/ import java.util.Date; public class JoinChatroomResponse { public int Room_id; public int User_id; public Date joined; public JoinChatroomResponse(int userId, int chatId, Date joined) { this.Room_id = chatId; this.joined = joined; this.User_id = userId; } @Override public String toString() { return "JoinChatroomResponse{" + ", Room_id=" + Room_id + ", joined=" + joined + ", User_id=" + User_id + '}'; } }