lets add a Participants field into Message

This commit is contained in:
tibbi 2020-04-08 20:36:59 +02:00
parent 424b77577c
commit 8b37aab610
4 changed files with 9 additions and 8 deletions

View file

@ -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
}