Skip to content

Commit

Permalink
Update library artists catalog relationship
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesoltys committed Nov 22, 2024
1 parent f6393fc commit 389e214
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ class EditorialNotes {
var short: String? = null

var standard: String? = null

var name: String? = null

var tagline: String? = null
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
package com.stevesoltys.applemusic.model.artist

import com.stevesoltys.applemusic.model.Artwork
import com.stevesoltys.applemusic.model.EditorialNotes

/**
* @author Steve Soltys
*/
class ArtistAttributes {

var artwork: Artwork? = null

var editorialNotes: EditorialNotes? = null

var genreNames: Array<String>? = null
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.stevesoltys.applemusic.model.libraryartist

import com.stevesoltys.applemusic.model.Resource
import com.stevesoltys.applemusic.model.artist.Artist

data class LibraryArtistsCatalogRelationship(
val data: List<LibraryArtist>
val data: List<Artist>
) : Resource()

0 comments on commit 389e214

Please sign in to comment.