Skip to content

Commit

Permalink
Add 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 2071466 commit f6393fc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ package com.stevesoltys.applemusic.model.libraryartist
/**
* @author Steve Soltys
*/
class LibraryArtistRelationships
data class LibraryArtistRelationships(
val catalog: LibraryArtistsCatalogRelationship? = null
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.stevesoltys.applemusic.model.libraryartist

import com.stevesoltys.applemusic.model.Resource

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

0 comments on commit f6393fc

Please sign in to comment.