Files
assistant-android/app/src/main/java/com/gh/gamecenter/entity/GameColumnCollection.kt
2022-10-26 18:16:47 +08:00

11 lines
315 B
Kotlin

package com.gh.gamecenter.entity
import com.google.gson.annotations.SerializedName
class GameColumnCollection(
@SerializedName("_id")
val id: String = "",
val name: String = "",
// 取值为 "1-1" 或 "1-2" 或 "top" 相应地代表 1行1个 或 1行2个 或 排行榜
val style: String = ""
)