Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-23 22:13:52 +03:00
parent caaea924a2
commit 70f7dba30d
3 changed files with 5 additions and 3 deletions

View file

@ -9,12 +9,12 @@ sealed class MyWallets(
class MyWalletsScreenOpened : MyWallets(event = "My Wallets Screen Opened")
class CardWasScanned : MyWallets(event = "Card Was Scanned")
class WalletUnlockTapped : MyWallets(event = "Wallet Unlock Tapped")
sealed class Button {
class ScanNewCard : MyWallets(event = "Button - Scan New Card")
class UnlockWithBiometrics : MyWallets(event = "Button - Unlock all with Face ID")
class EditWalletTapped : MyWallets(event = "Button - Edit Wallet Tapped")
class DeleteWalletTapped : MyWallets(event = "Button - Delete Wallet Tapped")
class WalletUnlockTapped : MyWallets(event = "Button - Wallet Unlock Tapped")
}
}