-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathData.java
More file actions
58 lines (44 loc) · 1.08 KB
/
Copy pathData.java
File metadata and controls
58 lines (44 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.codewithharry.firebase.notifications;
public class Data {
private String user, body, title, sent;
private Integer icon;
public Data() {
}
public Data(String user, String body, String title, String sent, Integer icon) {
this.user = user;
this.body = body;
this.title = title;
this.sent = sent;
this.icon = icon;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getSent() {
return sent;
}
public void setSent(String sent) {
this.sent = sent;
}
public Integer getIcon() {
return icon;
}
public void setIcon(Integer icon) {
this.icon = icon;
}
}