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 fab6e42 commit ec8a66c
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
package land.leets.Carrot.domain.user.dto.response;

import land.leets.Carrot.domain.user.entity.UserType;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class LoginResponse {
private Long userId;
private UserType userType;
public record LoginResponse(
Long userId,
UserType userType
) {
}

0 comments on commit ec8a66c

Please sign in to comment.