Updated on 2026-08-14

This commit is contained in:
Tangem 2025-11-17 10:43:29 +03:00
parent c5f7baa0ff
commit 6ad2d142a4
10 changed files with 55 additions and 25 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.domain.wallets.usecase
import com.tangem.domain.common.wallets.UserWalletsListRepository
class HasSecuredWalletsUseCase(private val userWalletsListRepository: UserWalletsListRepository) {
suspend operator fun invoke(): Boolean {
return userWalletsListRepository.hasSecuredWallets()
}
}