Skip to content

Instantly share code, notes, and snippets.

/Post Secret

Created February 24, 2016 14:54
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 anonymous/14ba98c54d549f327616 to your computer and use it in GitHub Desktop.
Save anonymous/14ba98c54d549f327616 to your computer and use it in GitHub Desktop.
import java.util.List;
/**
* Created by Ali on 2/22/2016.
*/
public class Post {
public String title;
public List<Author> author;
public class Author{
public String nickname;
}
public String featured_image;
public String imageAddress;
public Post(String imageAddress, String title) {
this.imageAddress = imageAddress;
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment