Skip to content

Commit

Permalink
refactor: SignUpRequestDto, SignUpResponseDto 패키지 이동 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyeong-hyeok committed Aug 8, 2023
1 parent 7e1a46b commit a5a59b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.project.mapdagu.domain.member.dto.request;
package com.project.mapdagu.domain.auth.dto.request;

import com.project.mapdagu.domain.member.entity.Member;
import com.project.mapdagu.domain.member.entity.Role;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.project.mapdagu.domain.member.dto.response;
package com.project.mapdagu.domain.auth.dto.response;

public record SignUpResponseDto(Long id, String userName) {
public static SignUpResponseDto of(Long id, String userName){
Expand Down

0 comments on commit a5a59b3

Please sign in to comment.