blob: 2124ad491ee2ad2c48b693f4850f713192913c24 (
plain)
1
2
3
4
5
6
7
8
9
|
package moe.ymc.acron.auth;
import org.jetbrains.annotations.NotNull;
public record Client(@NotNull String id,
@NotNull String token,
@NotNull Action policyMode,
@NotNull Rule[] rules) {
}
|