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