mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
14 lines
288 B
Kotlin
14 lines
288 B
Kotlin
package com.kunzisoft.keepass.database
|
|
|
|
import androidx.annotation.StringRes
|
|
|
|
data class ProgressMessage(
|
|
@StringRes
|
|
var titleId: Int? = null,
|
|
@StringRes
|
|
var messageId: Int? = null,
|
|
@StringRes
|
|
var warningId: Int? = null,
|
|
var cancelable: (() -> Unit)? = null
|
|
)
|