Files
iptv/scripts/models/blocked.ts

15 lines
213 B
TypeScript
Raw Permalink Normal View History

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