Created
June 4, 2024 20:57
-
-
Save MkhytarMkhoian/a41db124e5f3348da5160bd5e22b3d21 to your computer and use it in GitHub Desktop.
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
sealed class AppDeepLink: DeepLink { | |
data object Unknown : AppDeepLink() | |
data object Home : AppDeepLink() | |
data class FareList(val ryderId: String) : AppDeepLink() | |
data class Confirmation( | |
val ryderId: String, | |
val fare: Fare, | |
) : AppDeepLink() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment