-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.java
More file actions
36 lines (28 loc) · 764 Bytes
/
Copy pathusers.java
File metadata and controls
36 lines (28 loc) · 764 Bytes
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
package com.example.foodiemenu;
public class users {
String UserId, UserName, ProfilePic;
public users(String userId, String userName, String profilePic){
UserId = userId;
UserName = userName;
ProfilePic = profilePic;
}
public String getUserId() {
return UserId;
}
public void setUserId(String userId) {
UserId = userId;
}
public String getUserName() {
return UserName;
}
public void setUserName(String userName) {
UserName = userName;
}
public String getProfilePic() {
return ProfilePic;
}
public void setProfilePic(String profilePic) {
ProfilePic = profilePic;
}
public users(){}
}