old-automod/bot/src/struct/TempBan.ts
2022-01-22 20:21:57 +01:00

9 lines
122 B
TypeScript

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