mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
14 lines
206 B
TypeScript
14 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
|
|
}
|
|
}
|