mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-26 01:01:01 +00:00
10 lines
300 B
Kotlin
10 lines
300 B
Kotlin
package ani.dantotsu.settings
|
|
|
|
import java.io.Serializable
|
|
|
|
data class NovelReaderSettings(
|
|
var showSource: Boolean = true,
|
|
var showSystemBars: Boolean = false,
|
|
var default: CurrentNovelReaderSettings = CurrentNovelReaderSettings(),
|
|
var askIndividual: Boolean = true,
|
|
) : Serializable |