Skip to content

Commit

Permalink
feat: #10 회원정보 DTO 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyobeen-Park committed May 3, 2024
1 parent ec0ae9b commit 709e898
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package com.sopt.now.compose.data.DTO.response

import androidx.compose.runtime.MutableState
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class ResponseUserInfoDto(
@SerialName("code")
val code: Int,
@SerialName("message")
val message: String,
@SerialName("data")
val data: ResponseUserInfoDataDto,
)

@Serializable
data class ResponseUserInfoDataDto(
@SerialName("authenticationId")
val authenticationId: String,
@SerialName("nickname")
val nickname: String,
@SerialName("phone")
val phone: String,
)

0 comments on commit 709e898

Please sign in to comment.