allow saving received phone numbers to contacts

This commit is contained in:
tibbi 2020-05-13 16:43:30 +02:00
parent d4e9c22d13
commit 8d663b994d
5 changed files with 34 additions and 5 deletions

View file

@ -2,5 +2,4 @@ package com.simplemobiletools.smsmessenger.models
data class Conversation(
val id: Int, val snippet: String, val date: Int, val read: Boolean, val title: String, val photoUri: String,
val isGroupConversation: Boolean
)
val isGroupConversation: Boolean, val phoneNumber: String)