다른 회원 프로필 조회 API 추가

This commit is contained in:
2024-09-06 23:39:09 +09:00
parent da3175292b
commit e8cb4c6ea2
4 changed files with 50 additions and 1 deletions

View File

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