Skip to content

Commit

Permalink
feat: 사용자 정보를 받을 객체 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
hoyeonyy committed Oct 13, 2024
1 parent 464b295 commit 2704081
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package mouda.backend.auth.presentation.controller;

public record AppleUserInfoRequest(
AppleUserNameRequest name,
String email
) {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package mouda.backend.auth.presentation.controller;

public record AppleUserNameRequest(
String firstName,
String lastName
) {
}

0 comments on commit 2704081

Please sign in to comment.