BooruGrabberTelegramBot/src/main/kotlin/models/Config.kt

10 lines
150 B
Kotlin
Raw Normal View History

2022-09-06 18:52:45 +00:00
package models
2022-09-06 18:24:01 +00:00
import kotlinx.serialization.Serializable
@Serializable
data class Config(
2022-09-06 18:52:45 +00:00
val token: String,
val database: DatabaseConfig
2022-09-06 18:24:01 +00:00
)