ananas/app/src/main/java/dev/jdtech/jellyfin/models/DownloadSection.kt
Jcuhfehl 532e9adac1
Add offline playback (#51)
* Add offline playback

* Remove unused values

* Replace downloadutilities extension functions with normal functions

This is to not polute the namespace of fragment and context.

* Replace default Android icons with those from lucide

* Fix deleting downloaded movie

Co-authored-by: Jarne Demeulemeester <32322857+jarnedemeulemeester@users.noreply.github.com>
2021-10-29 21:11:01 +02:00

9 lines
No EOL
157 B
Kotlin

package dev.jdtech.jellyfin.models
import java.util.*
data class DownloadSection(
val id: UUID,
val name: String,
var items: List<PlayerItem>
)