Commit 64c8f2a1 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Remove attributes.

parent bb362a59
package chat.rocket.android.app.chatlist package chat.rocket.android.app.chatlist
import chat.rocket.android.app.User
import org.threeten.bp.LocalDateTime import org.threeten.bp.LocalDateTime
data class Chat(val userAvatarUri: String,
data class Chat(val user: User, data class Chat(val user: User,
val name: String, val name: String,
val type: String, val type: String,
val userStatus: String?,
val lastMessage: String, val lastMessage: String,
val lastMessageDateTime: LocalDateTime, val lastMessageDateTime: LocalDateTime,
val totalUnreadMessages: Int) val totalUnreadMessages: Int)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment