Skip to content

Commit

Permalink
[mod] : #3 AppRoutes -> Routes로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
1971123-seongmin committed Oct 24, 2024
1 parent 5567b32 commit d56386f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/src/main/java/org/sopt/and/presentation/navigation/Routes.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.sopt.and.presentation.navigation

import kotlinx.serialization.Serializable

sealed interface Routes {
@Serializable
data object SignInScreen : Routes

@Serializable
data object SignUpScreen : Routes

@Serializable
data class MyPageScreen(val email: String) : Routes

}

0 comments on commit d56386f

Please sign in to comment.