Interface AddToPlaylistRequest

Request structure for adding songs to a playlist

interface AddToPlaylistRequest {
    playlistID: string;
    songs: Song[];
}

Properties

Properties

playlistID: string

ID of the playlist to add songs to

songs: Song[]

Songs to add to the playlist