Created
April 14, 2016 21:28
-
-
Save kidager/13280a491021e753d5a0ec30d23fdc84 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LoginObject { | |
String token; | |
User user; | |
// Getters w Setters (public elkol) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class User { | |
String email; | |
String username; | |
String name; | |
String firstName; | |
String lastName; | |
String job; | |
String picture; | |
ArrayList<String> roles; | |
// W kifkif getters & setters | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment