2025-03-04 00:05:15 +05:00

11 lines
459 B
Kotlin

package ru.vendetti.bitcoin_summarizer
import com.google.gson.annotations.SerializedName
// Данные
data class GlobalResponse(
@SerializedName("active_currencies") val activeCryptocurrencies: String,
@SerializedName("total_market_cap_usd") val totalMarketCapUsd: String,
@SerializedName("total_24h_volume_usd") val total24hVolumeUsd: String,
@SerializedName("bitcoin_percentage_of_market_cap") val bitcoinPercentageOfMarketCap: String
)