Updated on 2026-08-14
This commit is contained in:
parent
9b1c90cf12
commit
2f7bcb9cbb
15 changed files with 316 additions and 88 deletions
|
|
@ -0,0 +1,12 @@
|
|||
package com.tangem.domain.card
|
||||
|
||||
interface ScanFailsRequester {
|
||||
|
||||
suspend fun show(source: Source): Result
|
||||
|
||||
enum class Source { MAIN, SIGN_IN, SETTINGS, INTRO }
|
||||
|
||||
sealed class Result {
|
||||
data object Dismissed : Result()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue