SimpleNotes/domain/src/usecases/export/ExportUseCase.kt
2020-11-11 23:48:27 +01:00

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
}