mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
14 lines
204 B
TypeScript
14 lines
204 B
TypeScript
type LanguageData = {
|
|
code: string
|
|
name: string
|
|
}
|
|
|
|
export class Language {
|
|
code: string
|
|
name: string
|
|
|
|
constructor(data: LanguageData) {
|
|
this.code = data.code
|
|
this.name = data.name
|
|
}
|
|
}
|