mirror of
https://github.com/iptv-org/database.git
synced 2024-11-09 22:16:38 -05:00
15 lines
213 B
TypeScript
15 lines
213 B
TypeScript
|
type BlockedProps = {
|
||
|
channel: string
|
||
|
ref: string
|
||
|
}
|
||
|
|
||
|
export class Blocked {
|
||
|
channel: string
|
||
|
ref: string
|
||
|
|
||
|
constructor({ ref, channel }: BlockedProps) {
|
||
|
this.channel = channel
|
||
|
this.ref = ref
|
||
|
}
|
||
|
}
|