mirror of
https://github.com/LBRYFoundation/lbry-database-java.git
synced 2025-08-23 09:27:22 +00:00
14 lines
No EOL
269 B
Java
14 lines
No EOL
269 B
Java
package com.lbry.database.values;
|
|
|
|
public class ActiveAmountValue implements ValueInterface {
|
|
|
|
public long amount;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "ActiveAmountValue{" +
|
|
"amount=" + amount +
|
|
'}';
|
|
}
|
|
|
|
} |