Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class AuthRequest {
  2.  
  3. @SerializedName("username")
  4. String username;
  5.  
  6. @SerializedName("password")
  7. String password;
  8.  
  9. public AuthRequest(String username, String password) {
  10. this.username = username;
  11. this.password = password;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement