Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-16 15:00:44 +05:00
parent 8c93a8b820
commit e2247020e4
9 changed files with 71 additions and 36 deletions

View file

@ -0,0 +1,18 @@
package com.tangem.features.send.v2.api.entry
import com.tangem.core.decompose.navigation.Route
/**
* Route for switching send and send via swap flows.
*/
sealed class SendEntryRoute : Route {
/** Route to send screen */
data object Send : SendEntryRoute()
/** Route to send via swap screen */
data object SendWithSwap : SendEntryRoute()
/** Route to choose token screen for send via swap */
data class ChooseToken(
val showSendViaSwapNotification: Boolean,
) : SendEntryRoute()
}