11 lines
315 B
Kotlin
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 = ""
|
|
) |