Skip to content
This repository has been archived by the owner on Oct 22, 2023. It is now read-only.

Commit

Permalink
Simplify CryptoSymbolsEntry name to CryptoSymbol
Browse files Browse the repository at this point in the history
  • Loading branch information
cyb3rko committed May 3, 2022
1 parent f9d1b50 commit a8681a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/com/cyb3rko/m3okotlin/data/Crypto.kt
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ data class CryptoQuoteResponse(
)

@Serializable
data class CryptoSymbolsResponse(val symbols: List<CryptoSymbolsEntry>) {
data class CryptoSymbolsResponse(val symbols: List<CryptoSymbol>) {

@Serializable
data class CryptoSymbolsEntry(val name: String, val symbol: String)
data class CryptoSymbol(val name: String, val symbol: String)
}

0 comments on commit a8681a5

Please sign in to comment.