Added tags

This commit is contained in:
Torben Pi Jensen
2024-02-03 17:06:07 +01:00
parent 343126bee3
commit 993501f049
9 changed files with 36 additions and 7 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ export class QueuedSong extends Song {
}
export class PlayingSong extends QueuedSong {
constructor(type: SongType, title: string, songId: string, image: string, listener: string, public length: number, public position: number) {
constructor(type: SongType, title: string, songId: string, image: string, listener: string, public length: number, public position: number, public tags: string[]) {
super(type, title, songId, image, listener);
}
}