Otter-App-Android-Funkwhale/app/src/main/java/com/github/apognu/otter/models/domain/SearchResult.kt

8 lines
144 B
Kotlin

package com.github.apognu.otter.models.domain
interface SearchResult {
fun cover(): String?
fun title(): String
fun subtitle(): String
}