mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
Update scripts
This commit is contained in:
parent
8a83f23243
commit
f1d2add19a
98 changed files with 2423 additions and 1499 deletions
19
scripts/models/region.ts
Normal file
19
scripts/models/region.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { Collection } from '../core'
|
||||
|
||||
type RegionProps = {
|
||||
code: string
|
||||
name: string
|
||||
countries: string[]
|
||||
}
|
||||
|
||||
export class Region {
|
||||
code: string
|
||||
name: string
|
||||
countries: Collection
|
||||
|
||||
constructor({ code, name, countries }: RegionProps) {
|
||||
this.code = code
|
||||
this.name = name
|
||||
this.countries = new Collection(countries)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue