diff --git a/src/main/kotlin/com/doki/user/application/dto/GetUserLoginInfoResponse.kt b/src/main/kotlin/com/doki/user/application/dto/GetUserLoginInfoResponse.kt index 4fe12f1..725a76f 100644 --- a/src/main/kotlin/com/doki/user/application/dto/GetUserLoginInfoResponse.kt +++ b/src/main/kotlin/com/doki/user/application/dto/GetUserLoginInfoResponse.kt @@ -1,11 +1,15 @@ package com.doki.user.application.dto import com.doki.user.domain.User +import io.swagger.v3.oas.annotations.media.Schema import java.time.LocalDateTime data class GetUserLoginInfoResponse( + @Schema(description = "유저 ID", example = "1") val id: Long, + @Schema(description = "유저 이메일", example = "test@gmail.com") val email: String, + @Schema(description = "마지막 로그인 시각", example = "2025-12-19T16:48:23.105699") val lastLoginAt: LocalDateTime? ) { companion object {