Last active
August 21, 2017 14:32
-
-
Save stefanmedack/38c6a643dd7e5f0cd8677882516d536a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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