Initial move of restore backup into a separate screen

This commit is contained in:
arkon
2023-12-21 22:47:23 -05:00
parent 565317d99c
commit 9f90ee358b
3 changed files with 280 additions and 179 deletions

View File

@@ -172,9 +172,9 @@ class BackupRestorer(
}
data class RestoreOptions(
val appSettings: Boolean,
val sourceSettings: Boolean,
val library: Boolean,
val appSettings: Boolean = true,
val sourceSettings: Boolean = true,
val library: Boolean = true,
) {
fun toBooleanArray() = booleanArrayOf(appSettings, sourceSettings, library)