compilation error fixed
This commit is contained in:
parent
61cf3c3125
commit
891173c04a
|
@ -27,13 +27,13 @@ data class InvitesViewState(
|
||||||
) : MavericksState
|
) : MavericksState
|
||||||
|
|
||||||
sealed interface InvitesContentState {
|
sealed interface InvitesContentState {
|
||||||
object Loading : InvitesContentState()
|
object Loading : InvitesContentState
|
||||||
data class Empty(
|
data class Empty(
|
||||||
val title: CharSequence,
|
val title: CharSequence,
|
||||||
val image: Drawable?,
|
val image: Drawable?,
|
||||||
val message: CharSequence
|
val message: CharSequence
|
||||||
) : InvitesContentState()
|
) : InvitesContentState
|
||||||
|
|
||||||
data class Content(val content: PagedList<RoomSummary>) : InvitesContentState()
|
data class Content(val content: PagedList<RoomSummary>) : InvitesContentState
|
||||||
data class Error(val throwable: Throwable) : InvitesContentState()
|
data class Error(val throwable: Throwable) : InvitesContentState
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue