26 lines
910 B
Kotlin
26 lines
910 B
Kotlin
package com.gh.gamecenter.entity
|
|
|
|
import com.gh.gamecenter.servers.gametest2.GameServerTestV2ViewModel
|
|
import com.google.gson.annotations.SerializedName
|
|
|
|
data class GameServerTestDisplaySetting(
|
|
@SerializedName("time_text_past")
|
|
val timeTextPast: String = RECENT,
|
|
@SerializedName("time_text_present")
|
|
val timeTextPresent: String = TODAY,
|
|
@SerializedName("time_text_future")
|
|
val timeTextFuture: String = FUTURE,
|
|
@SerializedName("game_category")
|
|
val gameCategory: List<String> = listOf(
|
|
GameServerTestV2ViewModel.GameCategory.Local.value,
|
|
GameServerTestV2ViewModel.GameCategory.Online.value,
|
|
GameServerTestV2ViewModel.GameCategory.Welfare.value,
|
|
GameServerTestV2ViewModel.GameCategory.Gjonline.value
|
|
),
|
|
) {
|
|
companion object {
|
|
const val RECENT = "近期"
|
|
const val TODAY = "今天"
|
|
const val FUTURE = "预约"
|
|
}
|
|
} |