Develop #1

Merged
Sadra3st merged 10 commits from develop into main 2026-07-07 19:26:38 +00:00
Showing only changes of commit 904f5ba271 - Show all commits
+33
View File
@@ -10,4 +10,37 @@ public class User {
private String email;
public User(int id, String username, String passwordHash, String email) {
this.id = id;
this.username = username;
this.password = passwordHash;
this.email = email;
}
public User(String username, String passwordHash, String email) {
this.username = username;
this.password = passwordHash;
this.email = email;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUsername() {
return username;
}
public String getPasswordHash() {
return password;
}
public String getEmail() {
return email;
}
}