한정판 콘텐츠

- 해당 콘텐츠 크리에이터인 경우 콘텐츠 구매자 리스트 추가
This commit is contained in:
2025-04-11 21:39:39 +09:00
parent dd5c121f1f
commit 5759a51017
3 changed files with 47 additions and 3 deletions

View File

@@ -37,7 +37,8 @@ data class GetAudioContentDetailResponse(
val isAvailablePin: Boolean,
val creator: AudioContentCreator,
val previousContent: OtherContentResponse?,
val nextContent: OtherContentResponse?
val nextContent: OtherContentResponse?,
val buyerList: List<ContentBuyer>
)
data class OtherContentResponse @QueryProjection constructor(
@@ -54,3 +55,8 @@ data class AudioContentCreator(
val isFollow: Boolean,
val isNotify: Boolean
)
data class ContentBuyer @QueryProjection constructor(
val nickname: String,
val profileImageUrl: String
)