Back to project page GoCats.
The source code is released under:
Apache License
If you think the Android project GoCats listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.collegelabs.gocats.app; // w w w . j a v a 2s. c o m /** */ public class ImageMetaData { public String author; public String url; public String title; public String permalink; public String id; public ImageMetaData(String url, String title, String author, String permalink, String id){ this.author = author; this.url = url; this.title = title; this.permalink = permalink; this.id = id; } }