commonMain.com.copperleaf.ballast.debugger.models.BallastDebuggerAction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ballast-debugger-jvm Show documentation
Show all versions of ballast-debugger-jvm Show documentation
Opinionated Kotlin multiplatform Repository Caching library based on Ballast MVI
package com.copperleaf.ballast.debugger.models
import kotlinx.serialization.Serializable
@Serializable
public sealed class BallastDebuggerAction {
public abstract val connectionId: String
@Serializable
public data class RequestViewModelRefresh(
override val connectionId: String,
val viewModelName: String,
) : BallastDebuggerAction()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy