Back to project page Give-Me-Ltc-Android-App.
The source code is released under:
Apache License
If you think the Android project Give-Me-Ltc-Android-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 com.hpritch5.give_me_ltc; /*from w w w. ja v a 2s .c o m*/ // TODO Implement each worker of a user's account public class MiningWorker { private String workerName; private int hashrate; private boolean alive; private String lastShareTimestamp; public MiningWorker(String workerName, int hashrate, boolean alive, String lastShareTimestamp) { this.workerName = workerName; this.hashrate = hashrate; this.alive = alive; this.lastShareTimestamp = lastShareTimestamp; } public String getWorkerName() { return workerName; } public int getHashrate() { return hashrate; } public boolean isAlive() { return alive; } public String getLastShareTimestamp() { return lastShareTimestamp; } }