Back to project page PicSync.
The source code is released under:
Apache License
If you think the Android project PicSync 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.darrenmowat.gdcu.service.helpers; // w ww . ja v a 2 s . c o m import java.io.File; public class Media { private File file; private String type; private String md5; public Media(File file, String type) { this.file = file; this.type = type; this.md5 = ""; } public String getType() { return type; } public File getFile() { return file; } public void setMD5(String md5) { this.md5 = md5; } public String getMD5() { return md5; } }