Skip to content

Commit

Permalink
[FEATURE]#75 : Notification Intent 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Aug 4, 2024
1 parent 892ac29 commit a767671
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.bff.wespot.notification.state

import com.bff.wespot.model.notification.Notification

sealed class NotificationAction {
data object OnNotificationScreenEntered : NotificationAction()
data class OnNotificationClicked(val notification: Notification) : NotificationAction()
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package com.bff.wespot.notification.state

sealed class NotificationSideEffect
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.bff.wespot.notification.state

import com.bff.wespot.model.notification.Notification

data class NotificationUiState(
val notificationList: List<Notification> = listOf(),
)

0 comments on commit a767671

Please sign in to comment.