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

10 lines
159 B
Kotlin
Raw Normal View History

2022-09-06 18:52:45 +00:00
package models
import kotlinx.serialization.Serializable
@Serializable
data class DBConnectOptions(
val attempts: Int = 3,
val delay: Long = 1000L
)