blob: a4cb7989cfc92e1f87af0bd33006041b1fc4b2c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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("out") @NotNull String out)
implements Event {
}
|