콘텐츠 상세

- 구매옵션(모두, 소장만, 대여만) 추가
This commit is contained in:
Klaus 2024-11-08 00:48:30 +09:00
parent d94ef1eb25
commit c46d6621ec
2 changed files with 2 additions and 0 deletions

View File

@ -588,6 +588,7 @@ class AudioContentService(
isMosaic = audioContent.isAdult && member.auth == null,
isOnlyRental = audioContent.isOnlyRental,
existOrdered = isExistsAudioContent,
purchaseOption = audioContent.purchaseOption,
orderType = orderType,
remainingTime = remainingTime,
creatorOtherContentList = creatorOtherContentList,

View File

@ -23,6 +23,7 @@ data class GetAudioContentDetailResponse(
val isMosaic: Boolean,
val isOnlyRental: Boolean,
val existOrdered: Boolean,
val purchaseOption: PurchaseOption,
val orderType: OrderType?,
val remainingTime: String?,
val creatorOtherContentList: List<OtherContentResponse>,