AutoMod/lib/types/TempBan.ts
2022-07-09 09:45:15 +02:00

8 lines
122 B
TypeScript

class TempBan {
id: string;
server: string;
bannedUser: string;
until: number;
}
export default TempBan;