Skip to content

Commit

Permalink
Merge pull request #291 from GSM-MSG/290-update/my-page-reponse
Browse files Browse the repository at this point in the history
🔀 :: id 표기 수정
  • Loading branch information
KimTaeO authored Mar 11, 2024
2 parents c3c37d9 + 3976402 commit 062b7be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.msg.gauth.domain.client.enums.ServiceScope
import com.msg.gauth.domain.user.User

data class MyProfileResDto(
val id: Long,
val userId: Long,
val email: String,
val name: String?,
val grade: Int?,
Expand All @@ -15,7 +15,7 @@ data class MyProfileResDto(
val clientList: List<SingleClientResDto>
) {
constructor(user: User, clientList: List<SingleClientResDto>): this(
id = user.id,
userId = user.id,
email = user.email,
name =user.name,
grade = user.grade,
Expand Down

0 comments on commit 062b7be

Please sign in to comment.