You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
377 B
22 lines
377 B
package api.menu.playa.vo;
|
|
|
|
public class UsuarioVO {
|
|
|
|
private String user;
|
|
private String pass;
|
|
|
|
public String getUser() {
|
|
return user;
|
|
}
|
|
public void setUser(String user) {
|
|
this.user = user;
|
|
}
|
|
public String getPass() {
|
|
return pass;
|
|
}
|
|
public void setPass(String pass) {
|
|
this.pass = pass;
|
|
}
|
|
|
|
|
|
}
|
|
|