Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.27 KB | None | 0 0
  1. public class ChatList {
  2.     public String id;
  3.  
  4.     public ChatList(String id) {
  5.         this.id = id;
  6.     }
  7.  
  8.     public ChatList() {
  9.     }
  10.  
  11.     public String getId() {
  12.         return id;
  13.     }
  14.  
  15.     public void setId(String id) {
  16.         this.id = id;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement