mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 10:57:18 -05:00
17 lines
253 B
TypeScript
17 lines
253 B
TypeScript
|
|
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
|
||
|
|
}
|
||
|
|
}
|