Updated on 2026-08-14

This commit is contained in:
Tangem 2024-10-29 15:00:00 +03:00
commit 9107783ddc
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}")
}