Added playlist

This commit is contained in:
Torben Pi Jensen
2024-02-03 14:32:03 +01:00
parent 9345dd1fd0
commit 829e9c599b
4 changed files with 52 additions and 10 deletions
+10
View File
@@ -26,3 +26,13 @@ export class Playlist {
constructor(public title: string, public listener: string, public songs: Song[]) {
}
}
export class PlaylistDescription {
public title: string;
public listener: string;
constructor(title: string, listener: string) {
this.title = title;
this.listener = listener;
}
}