forked from Fascinated/Bat
fix caching!
This commit is contained in:
@ -3,8 +3,10 @@ package cc.fascinated.bat.model.token.beatsaber.scoresaber;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Getter
|
||||
public class ScoreSaberAccountToken {
|
||||
public class ScoreSaberAccountToken implements Serializable {
|
||||
/**
|
||||
* The id for this ScoreSaber account.
|
||||
*/
|
||||
@ -89,7 +91,7 @@ public class ScoreSaberAccountToken {
|
||||
* The badge for this account.
|
||||
*/
|
||||
@AllArgsConstructor @Getter
|
||||
public static class Badge {
|
||||
public static class Badge implements Serializable {
|
||||
/**
|
||||
* The image for this badge.
|
||||
*/
|
||||
@ -105,7 +107,7 @@ public class ScoreSaberAccountToken {
|
||||
* The score stats for this account.
|
||||
*/
|
||||
@AllArgsConstructor @Getter
|
||||
public static class ScoreStats {
|
||||
public static class ScoreStats implements Serializable {
|
||||
/**
|
||||
* The total score for this account.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user