1
0
mirror of https://github.com/iptv-org/iptv.git synced 2025-06-18 03:58:04 +08:00
iptv/scripts/models/language.ts
2023-09-15 18:40:35 +03:00

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
}
}