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.
17 lines
253 B
TypeScript
17 lines
253 B
TypeScript
1 year ago
|
import { Dictionary } from '../core'
|
||
|
|
||
|
type IssueProps = {
|
||
|
number: number
|
||
|
data: Dictionary
|
||
|
}
|
||
|
|
||
|
export class Issue {
|
||
|
number: number
|
||
|
data: Dictionary
|
||
|
|
||
|
constructor({ number, data }: IssueProps) {
|
||
|
this.number = number
|
||
|
this.data = data
|
||
|
}
|
||
|
}
|