mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 01:50:04 -04:00
17 lines
279 B
TypeScript
17 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
|
|
}
|
|
}
|