lets add a Participants field into Message
This commit is contained in:
parent
424b77577c
commit
8b37aab610
4 changed files with 9 additions and 8 deletions
|
|
@ -3,8 +3,7 @@ package com.simplemobiletools.smsmessenger.models
|
|||
import android.provider.Telephony
|
||||
|
||||
data class Message(
|
||||
val id: Int, val body: String, val type: Int, val senderName: String, val senderNumber: String, 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
|
||||
) : ThreadItem() {
|
||||
fun isReceivedMessage() = type == Telephony.Sms.MESSAGE_TYPE_INBOX
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue