Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-29 14:20:14 +04:00
parent 06f2d51e87
commit 1698771cfd
5 changed files with 119 additions and 0 deletions

View file

@ -292,4 +292,9 @@ sealed class AppRoute(val path: String) : Route {
data class BuyCrypto(
val userWalletId: UserWalletId,
) : AppRoute(path = "/buy_crypto/${userWalletId.stringValue}")
@Serializable
data class SellCrypto(
val userWalletId: UserWalletId,
) : AppRoute(path = "/sell_crypto/${userWalletId.stringValue}")
}