1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package chat.user;
|
| public class NotifyContent {
|
| private String title;
| private NotifyContentDetail content;
|
| public String getTitle() {
| return title;
| }
|
| public void setTitle(String title) {
| this.title = title;
| }
|
| public NotifyContentDetail getContent() {
| return content;
| }
|
| public void setContent(NotifyContentDetail content) {
| this.content = content;
| }
|
| }
|
|