mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-19 19:11:49 +02:00
11 lines
142 B
TypeScript
11 lines
142 B
TypeScript
export class Artist {
|
|
|
|
constructor(id: number, name: string) {
|
|
this.id = id;
|
|
this.name = name;
|
|
}
|
|
|
|
id: number;
|
|
name: string;
|
|
}
|