Files
Backend/src/main/java/cc.fascinated/model/mojang/MojangUsernameToUuid.java
Liam fcb8ef0357
Some checks failed
ci / deploy (push) Failing after 1m3s
add server pinger
2024-04-10 07:43:38 +01:00

28 lines
483 B
Java

package cc.fascinated.model.mojang;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Getter @NoArgsConstructor
public class MojangUsernameToUuid {
/**
* The UUID of the player.
*/
private String id;
/**
* The name of the player.
*/
private String name;
/**
* Check if the profile is valid.
*
* @return if the profile is valid
*/
public boolean isValid() {
return id != null && name != null;
}
}