mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 11:40:01 -04:00
17 lines
280 B
TypeScript
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
|
|
}
|
|
}
|