aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/ymc/acron/s2c/response/EventCmdOut.java
blob: e5bd6095dea196575b10790975bb447401439f09 (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("text") @NotNull String text)
        implements Event {
}