Updated on 2026-08-14

This commit is contained in:
Tangem 2025-04-06 13:08:08 +04:00
parent b2499c1f35
commit c8c4f67018
8 changed files with 269 additions and 1 deletions

View file

@ -0,0 +1,14 @@
package com.tangem.domain.quotes.multi
import com.tangem.domain.core.flow.FlowFetcher
import com.tangem.domain.tokens.model.CryptoCurrency
/**
* Fetcher of quotes
*
[REDACTED_AUTHOR]
*/
interface MultiQuoteFetcher : FlowFetcher<MultiQuoteFetcher.Params> {
data class Params(val currenciesIds: Set<CryptoCurrency.RawID>)
}