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

Add properties.

parent 53ce8603
package chat.rocket.android.app.chatlist
data class Chat (val userAvatarUri: String, val roomName : String, val lastMessage : String, val lastMessageTimestamp: String, val unreadMessage: Int)
\ No newline at end of file
/**
* @author Filipe de Lima Brito (filipedelimabrito@gmail.com)
*/
data class Chat(val userAvatarUri: String,
val name: String,
val type: String,
val userStatus: String?,
val lastMessage: String,
val lastMessageTimestamp: String,
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