Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-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 livefyre.models; // w w w.j a v a 2 s . c o m public class Vote { private String value; private String author; public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }