first commit
This commit is contained in:
26
dapp/src/project/monitor/etherscan/EtheBalance.java
Executable file
26
dapp/src/project/monitor/etherscan/EtheBalance.java
Executable file
@@ -0,0 +1,26 @@
|
||||
package project.monitor.etherscan;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class EtheBalance implements Serializable{
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 1006723713904722210L;
|
||||
private String account;
|
||||
private Double balance;
|
||||
public String getAccount() {
|
||||
return account;
|
||||
}
|
||||
public void setAccount(String account) {
|
||||
this.account = account;
|
||||
}
|
||||
public Double getBalance() {
|
||||
return balance;
|
||||
}
|
||||
public void setBalance(Double balance) {
|
||||
this.balance = balance;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user