mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-19 19:49:33 +01:00
15 lines
394 B
Kotlin
15 lines
394 B
Kotlin
/*
|
|
* Nextcloud Talk - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2022 Andy Scherzinger <info@andy-scherzinger.de>
|
|
* SPDX-FileCopyrightText: 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
package com.nextcloud.talk.interfaces
|
|
|
|
import android.os.Bundle
|
|
|
|
interface ConversationMenuInterface {
|
|
fun showDeleteConversationDialog(bundle: Bundle)
|
|
}
|