Skip to content

Commit

Permalink
[feature/#92] ResponseUpdateUser
Browse files Browse the repository at this point in the history
  • Loading branch information
kkk5474096 committed Jan 5, 2023
1 parent 2f4bb69 commit 695ab8a
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package com.teamfillin.fillin.data.response

data class ResponseUpdateUser(
val updateUser: UpdateUserDto
) {
data class UpdateUserDto(
val id: Int,
val social: String,
val nickname: String,
val imageUrl: String,
val refreshToken: String,
val isDeleted: Boolean,
val updatedAt: String,
val email: String,
val createdAt: String,
val idKey: String,
val camera: List<String>
)
}

0 comments on commit 695ab8a

Please sign in to comment.