Commit cd86f1d1 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Update attribute type.

parent 4aafc216
package chat.rocket.android.app.chatlist package chat.rocket.android.app.chatlist
import org.threeten.bp.LocalDateTime
/** /**
* @author Filipe de Lima Brito (filipedelimabrito@gmail.com) * @author Filipe de Lima Brito (filipedelimabrito@gmail.com)
*/ */
...@@ -8,5 +10,5 @@ data class Chat(val userAvatarUri: String, ...@@ -8,5 +10,5 @@ data class Chat(val userAvatarUri: String,
val type: String, val type: String,
val userStatus: String?, val userStatus: String?,
val lastMessage: String, val lastMessage: String,
val lastMessageTimestamp: String, 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