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

10 wiersze
219 B
Kotlin

package audio.funkwhale.ffa.model
data class FavoritesResponse(
override val count: Int,
override val next: String?,
val results: List<Favorite>
) : FFAResponse<Favorite>() {
override fun getData() = results
}