Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-21 09:28:48 +01:00
parent 0bedc513a7
commit c846d8c276
15 changed files with 862 additions and 3 deletions

View file

@ -484,4 +484,7 @@ sealed class AppRoute(val path: String) : Route {
@Serializable
data class NewsDetails(val newsId: Int) : AppRoute(path = "/news_details/$newsId")
@Serializable
data object AddressSync : AppRoute(path = "/address_sync")
}