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

8 lines
169 B
Kotlin
Raw Normal View History

2024-03-30 18:41:23 +01:00
package org.schabi.newpipe.database.history.dao
import org.schabi.newpipe.database.BasicDAO
open interface HistoryDAO<T> : BasicDAO<T> {
fun getLatestEntry(): T
}