renaming SMS to Message in some cases for easier handling

This commit is contained in:
tibbi 2020-04-03 12:29:57 +02:00
parent 45e3d0b865
commit e6b8db6ad0
8 changed files with 87 additions and 84 deletions

View file

@ -0,0 +1,3 @@
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)