Last active
August 22, 2025 11:40
-
-
Save ifucolo/7a5c6f1563d7058afd8b34dd87adea82 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| @Serializable | |
| sealed interface HomeSubRoute : NavKey { | |
| @Serializable | |
| data object HomeRoute : HomeSubRoute | |
| @Serializable | |
| data object LiturgyRoute : HomeSubRoute | |
| @Serializable | |
| data class SaintRoute(val saint: Saint) : HomeSubRoute | |
| @Serializable | |
| data class PhraseOfDayRoute(val phrase: PhraseDay) : HomeSubRoute | |
| @Serializable | |
| data class ChapletRoute(val chapletName: String) : HomeSubRoute | |
| @Serializable | |
| data class PrayerRoute(val prayerName: String) : HomeSubRoute | |
| @Serializable | |
| data class NovenaRoute(val novenaName: String) : HomeSubRoute | |
| @Serializable | |
| data class PlanRoute( | |
| val planName: String, | |
| val subPlanName: String? = null | |
| ) : HomeSubRoute | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment