Skip to content
Snippets Groups Projects
Commit c4020e51 authored by Taras's avatar Taras
Browse files

Create room member item model

parent fd76b346
No related branches found
No related tags found
No related merge requests found
package com.futo.circles.model
import com.futo.circles.base.IdEntity
data class RoomMemberListItem(
override val id: String,
val name: String,
val avatarUrl: String,
val isSelected: Boolean = false
) : IdEntity<String>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment