* 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>
9 lines
No EOL
157 B
Kotlin
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>
|
|
) |