feat: add artist_id field for albums
This commit is contained in:
parent
9e4787f501
commit
0453a928bc
16 changed files with 260 additions and 1038 deletions
|
|
@ -1132,6 +1132,8 @@ pub struct MusicAlbum {
|
|||
pub cover: Vec<Thumbnail>,
|
||||
/// Artists of the album
|
||||
pub artists: Vec<ArtistId>,
|
||||
/// Primary artist ID
|
||||
pub artist_id: Option<String>,
|
||||
/// Album description in plaintext format
|
||||
pub description: Option<String>,
|
||||
/// Album type (Album/Single/EP)
|
||||
|
|
|
|||
Reference in a new issue