Skip to content

Instantly share code, notes, and snippets.

@janishar
Created August 24, 2016 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janishar/dcf89a4b1a77564917c5509d60b03dcf to your computer and use it in GitHub Desktop.
Save janishar/dcf89a4b1a77564917c5509d60b03dcf to your computer and use it in GitHub Desktop.
public class Feed {
@SerializedName("category")
@Expose
private String heading;
@SerializedName("data")
@Expose
private List<Info> infoList;
public String getHeading() {
return heading;
}
public void setHeading(String heading) {
this.heading = heading;
}
public List<Info> getInfoList() {
return infoList;
}
public void setInfoList(List<Info> infoList) {
this.infoList = infoList;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment