From 47aec110a89f408dc0d0043c89b7005e779e9b4a Mon Sep 17 00:00:00 2001 From: Redume Date: Tue, 30 Apr 2024 18:51:51 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20DTO=20=D0=BE=D1=82=D0=B2=D0=B5=D1=82=D0=B0=20=D0=BE?= =?UTF-8?q?=D1=82=20=D0=B0=D0=BF=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../su/redume/core/network/model/CurrencyDto.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/kotlin/su/redume/core/network/model/CurrencyDto.kt 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