Update scripts

This commit is contained in:
freearhey
2025-02-27 21:19:12 +03:00
parent bfe9ae6317
commit 7164934d04
2 changed files with 23 additions and 45 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
}
}