-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fab6e42
commit ec8a66c
Showing
1 changed file
with
4 additions
and
7 deletions.
There are no files selected for viewing
11 changes: 4 additions & 7 deletions
11
src/main/java/land/leets/Carrot/domain/user/dto/response/LoginResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) { | ||
} |