Updated on 2026-08-14

This commit is contained in:
Tangem 2022-11-18 18:06:25 +03:00
parent 62a032e3d1
commit ebcf2f40e5
13 changed files with 222 additions and 81 deletions

View file

@ -0,0 +1,15 @@
package com.tangem.tap.proxy
import com.tangem.common.card.Card
import com.tangem.domain.common.ScanResponse
import com.tangem.tap.features.wallet.redux.WalletState
class AppStateHolder {
val scanResponse: ScanResponse? = null
val walletState: WalletState? = null
fun getActualCard(): Card? {
return scanResponse?.card
}
}