Merge von Finanzverwaltung (Arim) und Reservierungsverwaltung (Abbas)
parent
af67b75b28
commit
a54b61e3f5
|
|
@ -1,13 +1,11 @@
|
||||||
class User {
|
class User {
|
||||||
String username;
|
String username;
|
||||||
String password;
|
String password;
|
||||||
Role role;
|
Role role;
|
||||||
|
|
||||||
public User(String username, String password, Role role) {
|
public User(String username, String password, Role role) {
|
||||||
this.username = username;
|
this.username = username;
|
||||||
this.password = password;
|
this.password = password;
|
||||||
this.role = role;
|
this.role = role;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue