RLH-17 - Update Account APIs and implement rename
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package wtf.beatrice.releasehive.dtos;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public class EditUsernameAccountDto
|
||||
{
|
||||
private String username;
|
||||
private UUID uuid;
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public UUID getUuid() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
public void setUuid(UUID uuid) {
|
||||
this.uuid = uuid;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user