Add available rooms range with average rate
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-01-29 11:33:43 +05:30
parent ff301d80fa
commit 33eebf06f6
2 changed files with 101 additions and 0 deletions

View File

@@ -32,6 +32,16 @@ data class RoomAvailabilityRangeResponse(
val freeCount: Int
)
data class RoomAvailabilityWithRateResponse(
val roomId: UUID,
val roomNumber: Int,
val roomTypeCode: String,
val roomTypeName: String,
val averageRate: Double?,
val currency: String,
val ratePlanCode: String? = null
)
data class RoomImageResponse(
val id: UUID,
val propertyId: UUID,