Skip to content

Instantly share code, notes, and snippets.

@oatpano
Created April 16, 2017 09:23
Show Gist options
  • Save oatpano/09e83f22838f629804fb64dfec56192b to your computer and use it in GitHub Desktop.
Save oatpano/09e83f22838f629804fb64dfec56192b to your computer and use it in GitHub Desktop.
public class User {
@Expose
String name;
@Expose
String blog;
@Expose
String company;
public String getName() {
return name;
}
public String getBlog() {
return blog;
}
public String getCompany() {
return company;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment