mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 02:47:33 -05:00
18 lines
279 B
TypeScript
18 lines
279 B
TypeScript
type BlockedProps = {
|
|
channel: string
|
|
reason: string
|
|
ref: string
|
|
}
|
|
|
|
export class Blocked {
|
|
channelId: string
|
|
reason: string
|
|
ref: string
|
|
|
|
constructor(data: BlockedProps) {
|
|
this.channelId = data.channel
|
|
this.reason = data.reason
|
|
this.ref = data.ref
|
|
}
|
|
}
|