Skip to content

Commit

Permalink
feat: add email
Browse files Browse the repository at this point in the history
  • Loading branch information
siwonpada committed Sep 2, 2024
1 parent 6b2a5c8 commit 6c55a24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import java.util.*

data class UserDto(
val id: UUID,
val email: String,
val nickname: String,
val createdAt: Date,
)
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ class User(
id = id,
nickname = nickname,
createdAt = createdAt,
email = email,
)
}

0 comments on commit 6c55a24

Please sign in to comment.