Add "Refetch" option for albums and artists (#93)

This commit is contained in:
vfsfitvnm
2022-07-09 15:14:02 +02:00
parent 3608c912b5
commit 29025da7e9
6 changed files with 632 additions and 56 deletions

View File

@@ -10,5 +10,6 @@ data class Album(
val thumbnailUrl: String? = null,
val year: String? = null,
val authorsText: String? = null,
val shareUrl: String? = null
val shareUrl: String? = null,
val timestamp: Long?
)

View File

@@ -13,4 +13,5 @@ data class Artist(
val shufflePlaylistId: String? = null,
val radioVideoId: String? = null,
val radioPlaylistId: String? = null,
val timestamp: Long?
)