Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-30 23:19:12 +04:00
parent aa54b0f842
commit 2cbfdb5c66
6 changed files with 36 additions and 23 deletions

View file

@ -0,0 +1,11 @@
package com.tangem.domain.wallets.usecase
import com.tangem.domain.wallets.legacy.UserWalletsListManager
import javax.inject.Inject
class GetIsBiometricsEnabledUseCase @Inject constructor(
private val userWalletsListManager: UserWalletsListManager,
) {
operator fun invoke(): Boolean = userWalletsListManager as? UserWalletsListManager.Lockable != null
}