Added playlist

This commit is contained in:
Torben Pi Jensen
2024-02-03 14:45:02 +01:00
parent 04253f753a
commit 807cd568e1
3 changed files with 4 additions and 6 deletions
+1 -5
View File
@@ -27,11 +27,7 @@ export class Playlist {
}
}
export class PlaylistDescription {
public title: string;
public listener: string;
constructor(title: string, listener: string) {
constructor(public title: string, public listener: string) {
this.title = title;
this.listener = listener;
}