Commit 1f8c8e89 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Delete RoomDialogContract.kt

parent 96ed1cbd
package chat.rocket.android.fragment.chatroom.dialog
import chat.rocket.core.models.Message
interface RoomDialogContract {
interface View {
fun showPinnedMessages(dataSet: ArrayList<Message>)
fun showFavoriteMessages()
fun showFileList(dataSet: ArrayList<String>)
fun showMemberList(dataSet: ArrayList<String>)
fun showMessage(message: String)
}
interface Presenter {
fun getDataSet(roomId: String,
roomType: String,
hostname: String,
token: String,
userId: String,
action: Int)
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment