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.j a va 2s . c om*/ import java.io.Serializable; public class MtGox implements Serializable { /** * */ private static final long serialVersionUID = 3039167272598591252L; private Ticker ticker; public Ticker getTicker() { return ticker; } public void setTicker(Ticker ticker) { this.ticker = ticker; } }