use new mojang endpoint status model

This commit is contained in:
Lee
2024-04-19 17:25:46 +01:00
parent b0b45723b2
commit 034f686e08
12 changed files with 52 additions and 26 deletions

View File

@ -0,0 +1,12 @@
package xyz.mcutils.models.cache;
import lombok.AllArgsConstructor;
import lombok.Getter;
@AllArgsConstructor @Getter
public class CachedServerBlockedStatus {
/**
* Whether the server is Mojang blocked.
*/
private boolean blocked;
}