UnifiedNlp/ui/src/main/kotlin/org/microg/nlp/ui/viewmodel/BackendListEntryCallback.kt
2020-07-10 19:13:13 +02:00

11 lines
282 B
Kotlin

/*
* SPDX-FileCopyrightText: 2020, microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/
package org.microg.nlp.ui.viewmodel
interface BackendListEntryCallback {
fun onEnabledChange(entry: BackendInfo?, newValue: Boolean)
fun onOpenDetails(entry: BackendInfo?)
}