fix: 메인 홈 - GetContentCurationResponse
- JsonProperty를 추가하여 Redis Cache에서 데이터 가져올 떄 파싱이 이뤄질 수 있도록 수정
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
package kr.co.vividnext.sodalive.content.main.tab
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty
|
||||
import kr.co.vividnext.sodalive.content.main.GetAudioContentMainItem
|
||||
|
||||
data class GetContentCurationResponse(
|
||||
val title: String,
|
||||
val items: List<GetAudioContentMainItem>
|
||||
@JsonProperty("title") val title: String,
|
||||
@JsonProperty("items") val items: List<GetAudioContentMainItem>
|
||||
)
|
||||
|
Reference in New Issue
Block a user