diff --git a/src/main/kotlin/su/redume/core/network/model/CurrencyDto.kt b/src/main/kotlin/su/redume/core/network/model/CurrencyDto.kt new file mode 100644 index 0000000..c08ac7b --- /dev/null +++ b/src/main/kotlin/su/redume/core/network/model/CurrencyDto.kt @@ -0,0 +1,11 @@ +package su.redume.core.network.model + +import kotlinx.serialization.Serializable + +@Serializable +data class CurrencyDto( + val from: String, + val timestamp: Long, + val quetocurrency: String, + val mid: Float +) \ No newline at end of file