database/scripts/models/blocked.ts
2025-02-24 13:08:13 +03:00

17 lines
280 B
TypeScript

type BlockedProps = {
channel: string
reason: string
ref: string
}
export class Blocked {
channel: string
reason: string
ref: string
constructor({ ref, reason, channel }: BlockedProps) {
this.channel = channel
this.reason = reason
this.ref = ref
}
}