Add shuffle/radio data to Artist

This commit is contained in:
vfsfitvnm
2022-06-29 20:14:44 +02:00
parent 9103c30044
commit 309a1a4237
3 changed files with 468 additions and 2 deletions

View File

@@ -8,5 +8,9 @@ data class Artist(
@PrimaryKey val id: String,
val name: String,
val thumbnailUrl: String?,
val info: String?
val info: String?,
val shuffleVideoId: String? = null,
val shufflePlaylistId: String? = null,
val radioVideoId: String? = null,
val radioPlaylistId: String? = null,
)