pls work first try

This commit is contained in:
Lee
2024-04-17 21:06:43 +01:00
commit ecde2bb2a7
30 changed files with 1258 additions and 0 deletions

View File

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