pre assign rooms before checkin

This commit is contained in:
androidlover5842
2026-01-24 23:07:45 +05:30
parent 57ca477c08
commit 4a2834819f
3 changed files with 67 additions and 0 deletions

View File

@@ -38,3 +38,10 @@ data class RoomChangeResponse(
val newRoomId: UUID,
val movedAt: String
)
data class RoomStayPreAssignRequest(
val roomId: UUID,
val fromAt: String,
val toAt: String,
val notes: String? = null
)