Back to project page TheGamesDB-Android-app.
The source code is released under:
GNU General Public License
If you think the Android project TheGamesDB-Android-app 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 dragni.tgb.thegamesdb.entity; //from w w w. j av a2 s.c o m public class Image { private String thumbNail, url; private int width, height; public String getUrl() { return url; } public String getThumbNail() { return thumbNail; } public int getHeight() { return height; } public int getWidth() { return width; } public void setThumbNail(String thumbNail) { this.thumbNail = thumbNail; } public void setUrl(String url) { this.url = url; } public void setHeight(int height) { this.height = height; } public void setWidth(int width) { this.width = width; } }