Back to project page Buddy-Android-SDK.
The source code is released under:
Apache License
If you think the Android project Buddy-Android-SDK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.buddy.sdk.models; //from w w w . ja va2s . c o m import java.util.Date; /** * Created by shawn on 7/6/14. */ public class User extends ModelBase { public static final String GENDER_MALE = "male"; public static final String GENDER_FEMALE = "female"; public String userName; public String firstName; public String lastName; public String email; public Date dateOfBirth; public Date lastLogin; public String profilePictureID; public String profilePictureUrl; }