Guest User

Untitled

a guest
Nov 7th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class BaseRequest{
  2. @SerializedName("version")
  3. public int version= 0;
  4. }
  5.  
  6. class UserRequest extends BaseRequest{
  7. @SerializedName("username")
  8. public String userName = "";
  9. @SerializedName("password")
  10. public String password = "";
  11. }
Add Comment
Please, Sign In to add comment