Update scripts

This commit is contained in:
freearhey 2025-02-24 13:08:13 +03:00
parent 058aef0f70
commit 78a1e288cc
3 changed files with 10 additions and 2 deletions

View file

@ -1,14 +1,17 @@
type BlockedProps = {
channel: string
reason: string
ref: string
}
export class Blocked {
channel: string
reason: string
ref: string
constructor({ ref, channel }: BlockedProps) {
constructor({ ref, reason, channel }: BlockedProps) {
this.channel = channel
this.reason = reason
this.ref = ref
}
}