add basic booking flow

This commit is contained in:
androidlover5842
2026-01-29 08:48:04 +05:30
parent 726f07bff4
commit 8bd2c2eeae
14 changed files with 879 additions and 4 deletions

View File

@@ -2,6 +2,8 @@ package com.android.trisolarispms.ui
sealed interface AppRoute {
data object Home : AppRoute
data class CreateBooking(val propertyId: String) : AppRoute
data class GuestInfo(val propertyId: String, val bookingId: String, val guestId: String) : AppRoute
data object AddProperty : AppRoute
data class ActiveRoomStays(val propertyId: String, val propertyName: String) : AppRoute
data class Rooms(val propertyId: String) : AppRoute