크리에이터 채널

- 시리즈 데이터가 파싱되지 않던 버그 수정
This commit is contained in:
2024-04-27 04:23:38 +09:00
parent 30d3ed14d7
commit b4623141f3
3 changed files with 24 additions and 20 deletions

View File

@@ -1,11 +1,13 @@
package kr.co.vividnext.sodalive.live.roulette
import com.google.gson.annotations.SerializedName
data class RoulettePreview(
val can: Int,
val items: List<RoulettePreviewItem>
@SerializedName("can") val can: Int,
@SerializedName("items") val items: List<RoulettePreviewItem>
)
data class RoulettePreviewItem(
val title: String,
val percent: String
@SerializedName("title") val title: String,
@SerializedName("percent") val percent: String
)