com.github.rougsig.actionsdispatcher.testmodels.sample.DuckAction.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-models Show documentation
Show all versions of test-models Show documentation
A simple annotation processor for generating actions dispatcher
The newest version!
package com.github.rougsig.actionsdispatcher.testmodels.sample
import com.github.rougsig.actionsdispatcher.annotations.DefaultActionElement
@DefaultActionElement(DuckState::class)
sealed class DuckAction
object OpenDuckDetail : DuckAction()
object LikeDuck : DuckAction()
object DislikeDuck : DuckAction()
object AddDuckToFavorite : DuckAction()
data class UpdateLceState(val state: Any): DuckAction()