mirror of https://github.com/hykilpikonna/AquaDX
14 lines
444 B
Kotlin
14 lines
444 B
Kotlin
package icu.samnyan.aqua.sega.chusan
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
|
import org.springframework.context.annotation.Configuration
|
|
|
|
@Configuration
|
|
@ConfigurationProperties(prefix = "game.chusan")
|
|
class ChusanProps {
|
|
var teamName: String? = null
|
|
var loginBonusEnable = false
|
|
var externalMatching: String? = null
|
|
var reflectorUrl: String? = null
|
|
var proxiedMatching: Boolean = false
|
|
} |