Skip to content

Commit e06e043

Browse files
committed
update :: record 변경
1 parent 438abb9 commit e06e043

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
package com.gcms.v3.domain.auth.presentation.data.response;
22

33
import lombok.Builder;
4-
import lombok.Getter;
54

65
import java.time.LocalDateTime;
76

8-
@Getter
97
@Builder
10-
public class TokenInfoResponseDto {
11-
private String accessToken;
12-
private String refreshToken;
13-
private LocalDateTime accessTokenExpiresIn;
14-
private LocalDateTime refreshTokenExpiresIn;
8+
public record TokenInfoResponseDto(
9+
String accessToken,
10+
String refreshToken,
11+
LocalDateTime accessTokenExpiresIn,
12+
LocalDateTime refreshTokenExpiresIn
13+
) {
1514
}

0 commit comments

Comments
 (0)