aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/ymc/acron/s2c/EventCmdOut.java
blob: 3b8d06e1f417821cf25913e61ec702032d669fe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package moe.ymc.acron.s2c;

import com.google.gson.annotations.SerializedName;
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 {
}