From 57ff74403116abf6e7ad04efbe5807de5f8d2388 Mon Sep 17 00:00:00 2001 From: jeongjaino Date: Sat, 23 Nov 2024 19:50:52 +0900 Subject: [PATCH] =?UTF-8?q?[FEATURE]#205=20:=20=ED=9A=8C=EC=9B=90=EA=B0=80?= =?UTF-8?q?=EC=9E=85=20=EB=8F=84=EB=A9=94=EC=9D=B8=20=EB=AA=A8=EB=8D=B8=20?= =?UTF-8?q?=EB=82=B4=20=EB=B2=84=EC=A0=84=20=EB=84=A4=EC=9E=84=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/kotlin/com/bff/wespot/model/auth/request/SignUp.kt | 1 + .../bff/wespot/data/remote/model/auth/request/SignUpDto.kt | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/core/model/src/main/kotlin/com/bff/wespot/model/auth/request/SignUp.kt b/core/model/src/main/kotlin/com/bff/wespot/model/auth/request/SignUp.kt index 7b281f30..e754437c 100644 --- a/core/model/src/main/kotlin/com/bff/wespot/model/auth/request/SignUp.kt +++ b/core/model/src/main/kotlin/com/bff/wespot/model/auth/request/SignUp.kt @@ -8,6 +8,7 @@ data class SignUp( val grade: Int, val classNumber: Int, val gender: String, + val versionName: String, val consents: Consents, val profileUrl: String?, val introduction: String?, diff --git a/data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/SignUpDto.kt b/data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/SignUpDto.kt index 84d04096..1ce0e779 100644 --- a/data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/SignUpDto.kt +++ b/data-remote/src/main/kotlin/com/bff/wespot/data/remote/model/auth/request/SignUpDto.kt @@ -1,5 +1,6 @@ package com.bff.wespot.data.remote.model.auth.request +import kotlinx.serialization.SerialName import kotlinx.serialization.Serializable @Serializable @@ -10,7 +11,8 @@ data class SignUpDto( val classNumber: Int, val gender: String, val signUpToken: String, + @SerialName("androidVersionName") val versionName: String, val consents: ConsentsDto, val introduction: String?, val profileUrl: String?, -) \ No newline at end of file +)