Back to project page MinerStatus.
The source code is released under:
Apache License
If you think the Android project MinerStatus 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 me.davidgreene.minerstatus.beans; /* w w w. ja va2s .c o m*/ import java.util.Date; public class Result { private String data; private Date date; public String getData() { return data; } public void setData(String data) { this.data = data; } public Date getDate() { return date; } public void setDate(Date date) { this.date = date; } }