Guest User

Untitled

a guest
Oct 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class UserModel extends RealmObject {
  2. @PrimaryKey
  3. public Long id;
  4. public String firstName;
  5. public String lastName;
  6. public UserSettings userSettingsModel;
  7. }
  8.  
  9. public class UserSettingsModel extends RealmObject {
  10. @PrimaryKey
  11. private Long id;
  12. public String email;
  13. public RealmList<Car> cars;
  14. }
  15.  
  16. public class Car extends RealmObject {
  17. @PrimaryKey
  18. private Long id;
  19. public String model;
  20. }
Add Comment
Please, Sign In to add comment