11 lines
273 B
Kotlin
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
|
|
)
|