Updated on 2026-08-14
This commit is contained in:
parent
d718cf557d
commit
970312afd3
19 changed files with 260 additions and 10 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.tangem.features.feed.entry.deeplink
|
||||
|
||||
interface NewsDeepLinkHandler {
|
||||
|
||||
interface Factory {
|
||||
fun create(queryParams: Map<String, String>): NewsDeepLinkHandler
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue