Skip to content

Commit

Permalink
[FEATURE]#205 : 회원가입 도메인 모델 내 버전 네임 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Nov 23, 2024
1 parent 8b0ab7c commit 57ff744
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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?,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.bff.wespot.data.remote.model.auth.request

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
Expand All @@ -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?,
)
)

0 comments on commit 57ff744

Please sign in to comment.