NewPipe-app-android/app/src/main/java/org/schabi/newpipe/database/history/dao/HistoryDAO.kt

8 lines
169 B
Kotlin

package org.schabi.newpipe.database.history.dao
import org.schabi.newpipe.database.BasicDAO
open interface HistoryDAO<T> : BasicDAO<T> {
fun getLatestEntry(): T
}