Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-20 12:45:49 +02:00
parent 39a190f056
commit f0de027151
23 changed files with 1050 additions and 2 deletions

View file

@ -0,0 +1,10 @@
package com.tangem.domain.nft
import com.tangem.domain.models.currency.CryptoCurrency
import com.tangem.domain.models.network.Network
import com.tangem.domain.nft.repository.NFTRepository
class GetNFTCurrencyUseCase(private val nftRepository: NFTRepository) {
operator fun invoke(network: Network): CryptoCurrency = nftRepository.getNFTCurrency(network)
}