Datenbanken

This commit is contained in:
2025-05-22 09:01:21 +02:00
commit cde6ffac00
9 changed files with 1161 additions and 0 deletions

29
db/DTO.java Normal file
View File

@ -0,0 +1,29 @@
package edu.hsog.db;
public class DTO {
String email;
String password;
public DTO(String email, String password) {
this.email = email;
this.password = password;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}