Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public enum UserType {
  2. USER(1),
  3. DEVSADMIN(2),
  4. RESTAURANTADMIN(3),
  5. }
  6.  
  7. class User {
  8. String firstName
  9. String lastName
  10. String emailAddress
  11. String contactNumber
  12. String password
  13. String image
  14. Date dateOfBirth
  15.  
  16. UserType userType
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement