iptv/scripts/models/blocked.ts

15 lines
213 B
TypeScript
Raw Normal View History

2023-09-15 17:40:35 +02:00
type BlockedProps = {
channel: string
ref: string
}
export class Blocked {
channel: string
ref: string
constructor({ ref, channel }: BlockedProps) {
this.channel = channel
this.ref = ref
}
}