mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 10:57:18 -05:00
18 lines
280 B
TypeScript
18 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
|
|
}
|
|
}
|