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

@@ -17,7 +17,7 @@ data class GetLatestFinishedLiveResponse(
@JsonProperty("nickname") val nickname: String,
@JsonProperty("profileImageUrl") val profileImageUrl: String,
@JsonProperty("timeAgo") val timeAgo: String,
@get:JsonProperty("following") var following: Boolean = false
@JsonProperty("following") var following: Boolean = false
) {
constructor(response: GetLatestFinishedLiveQueryResponse) : this(
response.memberId,