Package-level declarations
Types
Link copied to clipboard
data class ChatScreenModel(val deviceName: String? = null, val virtualAddress: InetAddress = InetAddress.getByName("192.168.0.1"), val allChatMessages: List<Message> = emptyList(), val offlineWarning: String? = null)
Data model representing the state of a chat screen in the UI.
Link copied to clipboard
data class ConversationsHomeScreenModel(val isLoading: Boolean = false, val conversations: List<Conversation> = emptyList(), val error: String? = null)
Data model representing the state of the home screen showing all conversations.