dodano konstruktor

This commit is contained in:
s97707 2024-10-11 12:39:55 +00:00
parent c0f27541b3
commit da49624afe

View File

@ -1,4 +1,9 @@
public class User {
private String username;
private String password;
public User(String username, String password) {
this.username = username;
this.password = password;
}
}