Rename RoomDirectoryList.State to RoomDirectoryList.SearchResult to avoid this class to be checked for stability.

This commit is contained in:
Benoit Marty 2025-10-09 17:31:11 +02:00 committed by Benoit Marty
parent 5a48a43655
commit 9410a727b6
5 changed files with 12 additions and 12 deletions

View file

@ -26,9 +26,9 @@ interface RoomDirectoryList {
/**
* The current search results as a state flow.
*/
val state: Flow<State>
val state: Flow<SearchResult>
data class State(
data class SearchResult(
val hasMoreToLoad: Boolean,
val items: List<RoomDescription>,
)