removing the Subject of the Messages, doesnt seem to be used

This commit is contained in:
tibbi 2020-04-08 20:20:54 +02:00
parent 3fd39a7acf
commit 424b77577c
2 changed files with 4 additions and 9 deletions

View file

@ -3,8 +3,8 @@ package com.simplemobiletools.smsmessenger.models
import android.provider.Telephony
data class Message(
val id: Int, val subject: String, 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 senderName: String, val senderNumber: String, val date: Int, val read: Boolean,
val thread: Int
) : ThreadItem() {
fun isReceivedMessage() = type == Telephony.Sms.MESSAGE_TYPE_INBOX
}