old-automod/lib/types/TempBan.ts

9 lines
122 B
TypeScript

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