funkwhale-app-android/app/src/main/java/audio/funkwhale/ffa/model/AlbumsResponse.kt

10 lines
208 B
Kotlin
Raw Normal View History

package audio.funkwhale.ffa.model
data class AlbumsResponse(
override val count: Int,
override val next: String?,
val results: AlbumList
) : FFAResponse<Album>() {
override fun getData() = results
2021-09-09 09:56:15 +02:00
}