Updated on 2026-08-14

This commit is contained in:
Tangem 2019-02-27 22:54:37 +03:00
parent 449840473a
commit 64ddaa4541
63 changed files with 128 additions and 164 deletions

View file

@ -0,0 +1,3 @@
package com.tangem.ui.event
class DeletingWalletFinish

View file

@ -0,0 +1,3 @@
package com.tangem.ui.event
class ReadAfterRequest

View file

@ -0,0 +1,5 @@
package com.tangem.ui.event
class ReadBeforeRequest {
var timeout: Int? = null
}

View file

@ -0,0 +1,5 @@
package com.tangem.ui.event
class ReadWait {
var msec: Int? = null
}

View file

@ -0,0 +1,5 @@
package com.tangem.ui.event
class TransactionFinishWithError {
var message: String? = null
}

View file

@ -0,0 +1,5 @@
package com.tangem.ui.event
class TransactionFinishWithSuccess {
var message: String? = null
}