5 lines
252 B
Kotlin
5 lines
252 B
Kotlin
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 phoneNumber: String)
|