9 lines
191 B
Kotlin
9 lines
191 B
Kotlin
package be.simplenotes.domain.usecases.export
|
|
|
|
import java.io.InputStream
|
|
|
|
interface ExportUseCase {
|
|
fun exportAsJson(userId: Int): String
|
|
fun exportAsZip(userId: Int): InputStream
|
|
}
|