mirror of
https://github.com/LBRYFoundation/lbry-database-java.git
synced 2025-08-23 17:27:26 +00:00
16 lines
388 B
Java
16 lines
388 B
Java
package com.lbry.database.values;
|
|
|
|
public class TrendingNotificationValue implements ValueInterface {
|
|
|
|
public long previous_amount;
|
|
public long new_amount;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TrendingNotificationValue{" +
|
|
"previous_amount=" + previous_amount +
|
|
", new_amount=" + new_amount +
|
|
'}';
|
|
}
|
|
|
|
}
|