mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-01 07:41:42 +02:00
11 lines
144 B
TypeScript
11 lines
144 B
TypeScript
export class Language {
|
|
|
|
constructor(id: number, name: string) {
|
|
this.id = id;
|
|
this.name = name;
|
|
}
|
|
|
|
id: number;
|
|
name: string;
|
|
}
|