Skip to content

Commit 7839d38

Browse files
committed
feat: 토큰 응답 DTO 구현
1 parent 748738b commit 7839d38

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package dmu.dasom.api.global.auth.dto;
2+
3+
import io.swagger.v3.oas.annotations.media.Schema;
4+
import jakarta.validation.constraints.NotNull;
5+
import lombok.*;
6+
7+
@AllArgsConstructor
8+
@Builder
9+
@Getter
10+
@NoArgsConstructor(access = AccessLevel.PROTECTED)
11+
@Schema(description = "토큰 BOX")
12+
public class TokenBox {
13+
14+
@Schema(description = "AccessToken")
15+
@NotNull
16+
private String accessToken;
17+
18+
@Schema(description = "RefreshToken")
19+
@NotNull
20+
private String refreshToken;
21+
22+
}

0 commit comments

Comments
 (0)