Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-14 21:32:29 +05:00
parent 5e854cd424
commit 7ff4227443
14 changed files with 63 additions and 21 deletions

View file

@ -5,6 +5,9 @@ import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.models.wallet.UserWalletId
interface UpdateAccessCodeComponent : ComposableContentComponent {
data class Params(val userWalletId: UserWalletId)
data class Params(
val userWalletId: UserWalletId,
val isFirstSetup: Boolean,
)
interface Factory : ComponentFactory<Params, UpdateAccessCodeComponent>
}