All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.sceyt.chatuikit.persistence.entity.pendings.PendingMessageStateEntity.kt Maven / Gradle / Ivy

package com.sceyt.chatuikit.persistence.entity.pendings

import androidx.room.Entity
import androidx.room.PrimaryKey
import com.sceyt.chat.models.message.MessageState

@Entity(tableName = "PendingMessageState")
data class PendingMessageStateEntity(
        @PrimaryKey
        val messageId: Long,
        val channelId: Long,
        val state: MessageState,
        val editBody: String?,
        val deleteOnlyForMe: Boolean
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy