Skip to content

Commit

Permalink
[feat] #3 회원 가입 요청 dto record 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Oct 26, 2023
1 parent 0ecc8aa commit 06c80f9
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package org.sopt.seminar.domain.member.dto.request;

import org.sopt.seminar.domain.member.domain.Sopt;

public record MemberSaveRequest(
String name,
String nickname,
int age,
Sopt sopt) {
}

0 comments on commit 06c80f9

Please sign in to comment.