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.otto; /*from ww w.j a v a 2 s .com*/ public class UploadStatusEvent { public String title; public String message; public UploadStatusEvent(String title, String message) { this.title = title; this.message = message; } }