make photoUri changeable at the Conversation model

This commit is contained in:
tibbi 2020-05-20 16:53:38 +02:00
parent 1c1a2d2855
commit 60c994756d
1 changed files with 1 additions and 1 deletions

View File

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