export class BlacklistItem { link: string; nicknames: string[]; comments: string[]; afk: number; cheater: number; griefer: number; toxic: number; useless: number; smurf: number; constructor(link: string, nicknames: string[], comments: string[], afk: number, cheater: number, griefer: number, toxic: number, useless: number, smurf: number) { this.link = link; this.nicknames = nicknames; this.comments = comments; this.afk = afk; this.cheater = cheater; this.griefer = griefer; this.toxic = toxic; this.useless = useless; this.smurf = smurf; } }