1
0
Fork 0
mirror of https://github.com/iptv-org/database.git synced 2025-01-05 04:52:14 -05:00
iptv-database/scripts/models/blocked.ts
2023-10-07 05:14:21 +03:00

14 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
}
}