use new mojang endpoint status model
This commit is contained in:
12
src/main/java/xyz/mcutils/models/cache/CachedServerBlockedStatus.java
vendored
Normal file
12
src/main/java/xyz/mcutils/models/cache/CachedServerBlockedStatus.java
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user