Updated on 2026-08-14

This commit is contained in:
Tangem 2024-12-12 14:02:12 +02:00
parent b2b3114759
commit 9e825e8bcd
2 changed files with 14 additions and 0 deletions

View file

@ -64,5 +64,15 @@ sealed class OnboardingEvent(
event = "Reset Card Notification",
params = mapOf("Option" to "Reset"),
)
data object ResumeInterruptedBackup : Backup(
event = "Notice - Backup Canceled",
params = mapOf("Action" to "Resume"),
)
data object CancelInterruptedBackup : Backup(
event = "Notice - Backup Canceled",
params = mapOf("Action" to "Cancel"),
)
}
}