-
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.
#17 [ADD] LoginSideEffect에 ShowToast 추가
- Loading branch information
1 parent
75d90c3
commit 947d5c1
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
presentation/src/main/java/com/sopt/presentation/auth/login/LoginSideEffect.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,6 +1,12 @@ | ||
package com.sopt.presentation.auth.login | ||
|
||
import androidx.annotation.StringRes | ||
|
||
sealed class LoginSideEffect { | ||
data object NavigateToHome : LoginSideEffect() | ||
data class NavigateSignUp(val authId: String) : LoginSideEffect() | ||
data class ShowToast( | ||
@StringRes val message: Int, | ||
val args: String? = null | ||
) : LoginSideEffect() | ||
} |