authlib/src/main/java/com/mojang/authlib/yggdrasil/response/MinecraftProfilePropertiesResponse.java
2025-12-02 04:19:36 +01:00

22 lines
472 B
Java

package com.mojang.authlib.yggdrasil.response;
import com.mojang.authlib.properties.PropertyMap;
import java.util.UUID;
public class MinecraftProfilePropertiesResponse extends Response {
private UUID id;
private String name;
private PropertyMap properties;
public UUID getId() {
return this.id;
}
public String getName() {
return this.name;
}
public PropertyMap getProperties() {
return this.properties;
}
}