adding MMS attachments at the Message class
This commit is contained in:
parent
44a1d85436
commit
500f2bc8fe
4 changed files with 17 additions and 29 deletions
|
|
@ -4,7 +4,8 @@ import android.provider.Telephony
|
|||
import com.simplemobiletools.smsmessenger.extensions.getThreadTitle
|
||||
|
||||
data class Message(
|
||||
val id: Int, val body: String, val type: Int, val participants: ArrayList<Contact>, val date: Int, val read: Boolean, val thread: Int
|
||||
val id: Int, val body: String, val type: Int, val participants: ArrayList<Contact>, val date: Int, val read: Boolean, val thread: Int,
|
||||
val attachment: MessageAttachment?
|
||||
) : ThreadItem() {
|
||||
fun isReceivedMessage() = type == Telephony.Sms.MESSAGE_TYPE_INBOX
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue