mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
17 lines
287 B
TypeScript
17 lines
287 B
TypeScript
type SubdivisionProps = {
|
|
code: string
|
|
name: string
|
|
country: string
|
|
}
|
|
|
|
export class Subdivision {
|
|
code: string
|
|
name: string
|
|
country: string
|
|
|
|
constructor({ code, name, country }: SubdivisionProps) {
|
|
this.code = code
|
|
this.name = name
|
|
this.country = country
|
|
}
|
|
}
|