Updated on 2026-08-14

This commit is contained in:
Tangem 2025-09-04 19:05:08 +04:00
parent bbb6b383c2
commit 08edfc4944
3 changed files with 70 additions and 1 deletions

View file

@ -20,5 +20,16 @@ data class QuotesResponse(
val priceChange1w: BigDecimal?,
@Json(name = "priceChange30d")
val priceChange30d: BigDecimal?,
)
) {
companion object {
val EMPTY = Quote(
price = null,
priceChange24h = null,
priceChange1w = null,
priceChange30d = null,
)
}
}
}