core/services/posts/client/src/commonMain/kotlin/dev/inmo/postssystem/services/posts/client/ui/list/PostsListUIState.kt

17 lines
406 B
Kotlin

package dev.inmo.postssystem.services.posts.client.ui.list
import dev.inmo.postssystem.features.posts.common.RegisteredPostWithContent
import kotlinx.serialization.Serializable
@Serializable
sealed interface PostsListUIState {
// @Serializable
object Loading : PostsListUIState
@Serializable
data class Show(
val posts: List<RegisteredPostWithContent>
) : PostsListUIState
}