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; //from w w w . j a v a2s . co m import java.io.Serializable; public class BtcguildPool implements Serializable { /** * */ private static final long serialVersionUID = -4258828827151924731L; private Double hash_rate; private Integer active_workers; private Integer active_shares; private String round_time; public Double getHash_rate() { return hash_rate; } public void setHash_rate(Double hash_rate) { this.hash_rate = hash_rate; } public Integer getActive_workers() { return active_workers; } public void setActive_workers(Integer active_workers) { this.active_workers = active_workers; } public Integer getActive_shares() { return active_shares; } public void setActive_shares(Integer active_shares) { this.active_shares = active_shares; } public String getRound_time() { return round_time; } public void setRound_time(String round_time) { this.round_time = round_time; } }