fetch the message Thread field too and group by it

This commit is contained in:
tibbi 2020-04-03 16:33:57 +02:00
parent c1363e4d22
commit 960b16c99b
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,6 @@
package com.simplemobiletools.smsmessenger.models
data class Message(val id: Int, val subject: String, val body: String, val type: Int, val address: String, val date: Int, val read: Boolean)
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
)