prepare for handling multiple mms attachments

This commit is contained in:
tibbi 2020-04-12 18:13:40 +02:00
parent 59ba80d65a
commit a5d8633593
5 changed files with 17 additions and 12 deletions

View file

@ -1,5 +1,3 @@
package com.simplemobiletools.smsmessenger.models
import android.net.Uri
data class MessageAttachment(val id: Int, var text: String, var uri: Uri?, var type: String)
data class MessageAttachment(val id: Int, var text: String, var attachments: ArrayList<Attachment>)