Back to project page Instabackground.
The source code is released under:
Apache License
If you think the Android project Instabackground 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 es.expilu.instabackground.model; /* w w w .j av a2 s .c o m*/ public class User { private String id; private String username; private String website; private String profile_picture; private String full_name; private String bio; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getWebsite() { return website; } public void setWebsite(String website) { this.website = website; } public String getProfile_picture() { return profile_picture; } public void setProfile_picture(String profile_picture) { this.profile_picture = profile_picture; } public String getFull_name() { return full_name; } public void setFull_name(String full_name) { this.full_name = full_name; } public String getBio() { return bio; } public void setBio(String bio) { this.bio = bio; } }