mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 02:47:33 -05:00
15 lines
204 B
TypeScript
15 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
|
|
}
|
|
}
|