-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.java
More file actions
58 lines (44 loc) · 1.31 KB
/
Copy pathUser.java
File metadata and controls
58 lines (44 loc) · 1.31 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.hossain.zakaria.firebasephotoapp.models;
public class User {
private String userName,userPhone,userAdd,userBlood, userImageUrl;
public User() {
//empty constructor needed for retrieving data from fire-base
}
public User(String userName, String userPhone, String userAdd, String userBlood, String userImageUrl) {
this.userName = userName;
this.userPhone = userPhone;
this.userAdd = userAdd;
this.userBlood = userBlood;
this.userImageUrl = userImageUrl;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPhone() {
return userPhone;
}
public void setUserPhone(String userPhone) {
this.userPhone = userPhone;
}
public String getUserAdd() {
return userAdd;
}
public void setUserAdd(String userAdd) {
this.userAdd = userAdd;
}
public String getUserBlood() {
return userBlood;
}
public void setUserBlood(String userBlood) {
this.userBlood = userBlood;
}
public String getUserImageUrl() {
return userImageUrl;
}
public void setUserImageUrl(String userImageUrl) {
this.userImageUrl = userImageUrl;
}
}