Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-06 18:00:16 +05:00
parent 7e5a678d84
commit d442154b82
17 changed files with 137 additions and 6 deletions

View file

@ -0,0 +1,9 @@
package com.tangem.domain.tokens.model.details
import kotlinx.serialization.Serializable
@Serializable
sealed class NavigationAction {
data object Staking : NavigationAction()
data class YieldSupply(val isActive: Boolean) : NavigationAction()
}