Files
sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/member/GetMemberProfileResponse.kt
2024-09-07 00:24:47 +09:00

11 lines
273 B
Kotlin

package kr.co.vividnext.sodalive.member
import com.querydsl.core.annotations.QueryProjection
data class GetMemberProfileResponse @QueryProjection constructor(
val memberId: Long,
val nickname: String,
val profileImageUrl: String,
val isBlocked: Boolean
)