NewPipe-app-android/app/src/main/java/org/schabi/newpipe/database/playlist/PlaylistLocalItem.kt

11 lines
274 B
Kotlin
Raw Normal View History

2024-03-30 18:41:23 +01:00
package org.schabi.newpipe.database.playlist
import org.schabi.newpipe.database.LocalItem
open interface PlaylistLocalItem : LocalItem {
fun getOrderingName(): String
fun getDisplayIndex(): Long
fun getUid(): Long
fun setDisplayIndex(displayIndex: Long)
}