type LanguageProps = {
code: string
name: string
}
export class Language {
constructor({ code, name }: LanguageProps) {
this.code = code
this.name = name