feat: Add default values to AppSettings

This commit is contained in:
Myzel394 2023-08-03 21:51:59 +02:00
parent dfa2cce148
commit 15b83c03ae
No known key found for this signature in database
GPG Key ID: 50098FCA22080F0F

View File

@ -98,4 +98,15 @@ data class AudioRecorderSettings(
return copy(encoder = encoder)
}
companion object {
val EXAMPLE_DURATION_TIMES = listOf(
60 * 1000L,
60 * 5 * 1000L,
60 * 10 * 1000L,
60 * 15 * 1000L,
60 * 30 * 1000L,
60 * 60 * 1000L,
)
}
}