Skip to content

Commit

Permalink
request #56 자기소개 수정 요청 dto 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
huncozyboy committed Nov 10, 2024
1 parent ec8a66c commit 5fe181b
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package land.leets.Carrot.domain.user.dto.request;

public record SelfIntroUpdateRequest(
String selfIntro
) {
public static SelfIntroUpdateRequest of(String selfIntro) {
return new SelfIntroUpdateRequest(selfIntro);
}
}

0 comments on commit 5fe181b

Please sign in to comment.