fix caching!

This commit is contained in:
Lee
2024-06-26 14:15:05 +01:00
parent 3fc26583f2
commit 805da78cad
3 changed files with 8 additions and 4 deletions

View File

@ -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.
*/