mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 10:57:18 -05:00
15 lines
206 B
TypeScript
15 lines
206 B
TypeScript
type LanguageProps = {
|
|
code: string
|
|
name: string
|
|
}
|
|
|
|
export class Language {
|
|
code: string
|
|
name: string
|
|
|
|
constructor({ code, name }: LanguageProps) {
|
|
this.code = code
|
|
this.name = name
|
|
}
|
|
}
|