Allow updating expected dates on bookings
All checks were successful
build-and-deploy / build-deploy (push) Successful in 36s

This commit is contained in:
androidlover5842
2026-01-29 20:29:04 +05:30
parent 5f5fd1f6b1
commit 790a74c40d
2 changed files with 51 additions and 0 deletions

View File

@@ -79,6 +79,11 @@ data class BookingLinkGuestRequest(
val guestId: UUID
)
data class BookingExpectedDatesUpdateRequest(
val expectedCheckInAt: String? = null,
val expectedCheckOutAt: String? = null
)
data class BookingCheckOutRequest(
val checkOutAt: String? = null,
val notes: String? = null