Updated on 2026-08-14
This commit is contained in:
parent
784161880d
commit
3d214007f4
14 changed files with 161 additions and 30 deletions
|
|
@ -0,0 +1,15 @@
|
|||
package com.tangem.domain.quotes
|
||||
|
||||
import com.tangem.domain.tokens.model.CryptoCurrency
|
||||
import com.tangem.domain.tokens.model.Quote
|
||||
|
||||
/**
|
||||
* Quotes repository
|
||||
*
|
||||
[REDACTED_AUTHOR]
|
||||
*/
|
||||
interface QuotesRepositoryV2 {
|
||||
|
||||
/** Get quotes by [currenciesIds] synchronously or null */
|
||||
suspend fun getMultiQuoteSyncOrNull(currenciesIds: Set<CryptoCurrency.RawID>): Set<Quote>?
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue