mirror of
https://github.com/iptv-org/iptv.git
synced 2025-06-18 03:58:04 +08: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
|
|
}
|
|
}
|