package moe.ymc.acron.s2c.response; import com.google.gson.annotations.SerializedName; import moe.ymc.acron.s2c.Event; public record EventCmdRes(@SerializedName("id") int id, @SerializedName("success") boolean success, @SerializedName("result") int result) implements Event { }