Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. { "email:"test@test.com",
  2. "password": "test",
  3. "hash": "true"
  4. }
  5.  
  6. public class LoginRequest {
  7.  
  8.  
  9. private String email;
  10. private String password;
  11. private String gethash;
  12.  
  13. public LoginRequest(String email, String password, String hash) {
  14. this.email = email;
  15. this.password = password;
  16. this.gethash = hash;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement