Code refactor

This commit is contained in:
Carlos
2020-06-25 16:53:10 +02:00
parent 45c3584061
commit f177d1fe2d
7 changed files with 168 additions and 85 deletions

View File

@ -0,0 +1,19 @@
package es.mesacarlos.webconsole.config;
public class UserData {
private String username;
private String password;
public UserData(String username, String password) {
this.username = username;
this.password = password;
}
public String getUsername() {
return username;
}
public String getPassword() {
return password;
}
}