mirror of https://github.com/iptv-org/iptv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
355 B
TypeScript
20 lines
355 B
TypeScript
import { DataSet } from '../core'
|
|
|
|
type DiscussionProps = {
|
|
number: number
|
|
category: string
|
|
data: DataSet
|
|
}
|
|
|
|
export class Discussion {
|
|
number: number
|
|
category: string
|
|
data: DataSet
|
|
|
|
constructor({ number, category, data }: DiscussionProps) {
|
|
this.number = number
|
|
this.category = category
|
|
this.data = data
|
|
}
|
|
}
|