fix: 라이브 메인 API

- @JsonProperty 애노테이션 추가
This commit is contained in:
2025-07-21 16:18:33 +09:00
parent ab877beae1
commit 800b8d3216
3 changed files with 5 additions and 5 deletions

View File

@@ -9,5 +9,5 @@ data class AudioContentMainItem @QueryProjection constructor(
@JsonProperty("title") val title: String,
@JsonProperty("coverImageUrl") val coverImageUrl: String,
@JsonProperty("creatorNickname") val creatorNickname: String,
@get:JsonProperty("isPointAvailable") val isPointAvailable: Boolean
@JsonProperty("isPointAvailable") val isPointAvailable: Boolean
)