session-android/src/org/thoughtcrime/securesms/loki/DeviceLinkingViewDelegate.kt
2019-10-08 14:28:30 +11:00

10 lines
369 B
Kotlin

package org.thoughtcrime.securesms.loki
import org.whispersystems.signalservice.loki.api.PairingAuthorisation
interface DeviceLinkingViewDelegate {
fun handleDeviceLinkAuthorized(pairingAuthorisation: PairingAuthorisation) { }
fun handleDeviceLinkingDialogDismissed() { }
fun sendPairingAuthorizedMessage(pairingAuthorisation: PairingAuthorisation) { }
}