Merge von Finanzverwaltung (Arim) und Reservierungsverwaltung (Abbas)

master
PC 2025-01-11 17:57:00 +01:00
parent af67b75b28
commit a54b61e3f5
1 changed files with 10 additions and 12 deletions

View File

@ -1,13 +1,11 @@
class User {
String username;
String password;
Role role;
public User(String username, String password, Role role) {
this.username = username;
this.password = password;
this.role = role;
}
class User {
String username;
String password;
Role role;
public User(String username, String password, Role role) {
this.username = username;
this.password = password;
this.role = role;
}
}