Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-30 18:02:28 +05:00
parent d718cf557d
commit 970312afd3
19 changed files with 260 additions and 10 deletions

View file

@ -36,4 +36,7 @@ sealed interface FeedEntryRoute {
@Serializable
data class NewsDetail(val articleId: Int, val preselectedArticlesId: List<Int>) : FeedEntryRoute
@Serializable
data class NewsList(val preselectedCategoryId: Int? = null) : FeedEntryRoute
}

View file

@ -0,0 +1,8 @@
package com.tangem.features.feed.entry.deeplink
interface NewsDeepLinkHandler {
interface Factory {
fun create(queryParams: Map<String, String>): NewsDeepLinkHandler
}
}