package moe.ymc.acron.s2c.response; import com.google.gson.annotations.SerializedName; import moe.ymc.acron.s2c.Event; import org.jetbrains.annotations.NotNull; import java.util.UUID; public record EventCmdOut(@SerializedName("id") int id, @SerializedName("sender") @NotNull UUID sender, @SerializedName("text") @NotNull String text) implements Event { }