Implement TODO tasks

This commit is contained in:
2026-06-27 22:27:31 +03:30
parent 00f990c653
commit 0ad08196d4
19 changed files with 611 additions and 29 deletions
+22
View File
@@ -10,4 +10,26 @@ public class User {
private String email;
public User(int id, String username, String password, String email) {
this.id=id;
this.username=username;
this.password=password;
this.email=email;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
public String getEmail() {
return email;
}
public int getId() {
return id;
}
}