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

import com.google.gson.annotations.SerializedName;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

public record EventDisconnected(@SerializedName("player") @Nullable Entity player,
                                @SerializedName("reason") @NotNull String reason)
        implements Event {
}