123456789101112131415161718 |
- package com.hotent.im.network;
- public class Response {
- public boolean cancel = false;
- public int state;
- public String content;
- public long timestamp = 0;
- public Response(int state) {
- this.state = state;
- this.content = "";
- }
- @Override
- public String toString() {
- return content;
- }
- }
|