blob: 8c1b6a9467a7364e480ef97a2d8e3be18cae3aad (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 {
}
|