iptv/scripts/models/blocked.ts
2023-09-15 18:40:35 +03:00

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