크리에이터 채널
- 시리즈 데이터가 파싱되지 않던 버그 수정
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user