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 ww . ja va 2s .com import java.io.Serializable; public class BitpoolPool implements Serializable{ /** * */ private static final long serialVersionUID = -5074046199767555947L; private String currentRound; private String currentSpeed; public String getCurrentRound() { return currentRound; } public void setCurrentRound(String currentRound) { this.currentRound = currentRound; } public String getCurrentSpeed() { return currentSpeed; } public void setCurrentSpeed(String currentSpeed) { this.currentSpeed = currentSpeed; } }