Advertisement
Guest User

Untitled

a guest
Dec 30th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class RegistrationRequest {
  2. @SerializedName("username")
  3. @Expose
  4. private String username;
  5. @SerializedName("password")
  6. @Expose
  7. private String password;
  8.  
  9. public String getUsername() {
  10. return username;
  11. }
  12.  
  13. public void setUsername(String username) {
  14. this.username = username;
  15. }
  16.  
  17. public String getPassword() {
  18. return password;
  19. }
  20.  
  21. public void setPassword(String password) {
  22. this.password = password;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement