package moe.ymc.acron.s2c.event; import com.google.gson.annotations.SerializedName; import moe.ymc.acron.s2c.Entity; import moe.ymc.acron.s2c.Event; import org.jetbrains.annotations.NotNull; public record EventPlayerMessage(@SerializedName("player") @NotNull Entity player, @SerializedName("text") @NotNull String text) implements Event { }