Skip to content

Instantly share code, notes, and snippets.

@stefanmedack
Last active August 21, 2017 14:32
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 stefanmedack/38c6a643dd7e5f0cd8677882516d536a to your computer and use it in GitHub Desktop.
Save stefanmedack/38c6a643dd7e5f0cd8677882516d536a to your computer and use it in GitHub Desktop.
public class Article {
public String id;
public String title;
public Image cell_image;
public Video video;
public User author;
public String subtitle;
public List<Content> content;
public int like_count;
public List<Comment> comments;
public Date published_at;
public Article() {
}
// ... more code - e.g. Constructors ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment