Skip to content

Commit

Permalink
update :: record 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ta2ye0n committed Oct 11, 2024
1 parent 438abb9 commit e06e043
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
package com.gcms.v3.domain.auth.presentation.data.response;

import lombok.Builder;
import lombok.Getter;

import java.time.LocalDateTime;

@Getter
@Builder
public class TokenInfoResponseDto {
private String accessToken;
private String refreshToken;
private LocalDateTime accessTokenExpiresIn;
private LocalDateTime refreshTokenExpiresIn;
public record TokenInfoResponseDto(
String accessToken,
String refreshToken,
LocalDateTime accessTokenExpiresIn,
LocalDateTime refreshTokenExpiresIn
) {
}

0 comments on commit e06e043

Please sign in to comment.