-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT] suggestionItemClick 로깅을 위한 수동 맵핑 로직 추가 (#223)
- Loading branch information
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...roid/mission_suggestion/ui/dashboard/presentation/contract/SuggestionDashboardUiEffect.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package com.lgtm.android.mission_suggestion.ui.dashboard.presentation.contract | ||
|
||
import com.lgtm.domain.mission_suggestion.SuggestionContent | ||
import com.lgtm.domain.mission_suggestion.SuggestionVO | ||
|
||
sealed class SuggestionDashboardUiEffect { | ||
object GoBack: SuggestionDashboardUiEffect() | ||
object CreateSuggestion: SuggestionDashboardUiEffect() | ||
data class SuggestionDetail(val suggestionId: Int): SuggestionDashboardUiEffect() | ||
data class ShotSuggestionClickLogging(val suggestionContent: SuggestionContent): SuggestionDashboardUiEffect() | ||
data class ShotSuggestionClickLogging(val suggestionVO: SuggestionVO): SuggestionDashboardUiEffect() | ||
} |