adding a DateTime thread view type

This commit is contained in:
tibbi 2020-04-03 23:07:34 +02:00
parent 9a47de4a30
commit 59c5d16f62
7 changed files with 52 additions and 25 deletions

View file

@ -5,6 +5,6 @@ import android.provider.Telephony
data class Message(
val id: Int, val subject: String, val body: String, val type: Int, val address: String, val date: Int, val read: Boolean,
val thread: Int
) {
) : ThreadItem() {
fun isReceivedMessage() = type == Telephony.Sms.MESSAGE_TYPE_INBOX
}