McGameProfile
data class McGameProfile(val id: UUID, val name: String, val properties: List<McGameProfile.Property>)
Represents a player's Minecraft game profile.
This data class stores information about a player's profile: their UUID, username, and associated properties.
Parameters
id
The unique identifier of the player.
name
The player's username.
properties
A list of properties associated with the player's profile.