Back to project page UniversalImagePick.
The source code is released under:
Apache License
If you think the Android project UniversalImagePick 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 com.luffyjet.universalimagepick.model; //from ww w . j av a2 s. c o m /** * Thumbnail of image * @author Luffyjet * @version 1.0.0 * @since 2014-9-15 * {@link https://github.com/luffyjet} */ public class Thumbnail { /** * Thumbnail id */ public String id ; /** * ????????? id * source image id */ public String imageId ; /** *Thumbnail path */ public String thumbnailPath; public Thumbnail(String id, String imageId, String imagePath) { super(); this.id = id; this.imageId = imageId; this.thumbnailPath = imagePath; } public Thumbnail() { super(); } }