Soft-disable room types instead of delete
All checks were successful
build-and-deploy / build-deploy (push) Successful in 32s

This commit is contained in:
androidlover5842
2026-01-27 17:24:42 +05:30
parent 4c21830eb0
commit bcfe9fbf2a
3 changed files with 10 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ data class RoomTypeUpsertRequest(
val maxOccupancy: Int? = null,
val sqFeet: Int? = null,
val bathroomSqFeet: Int? = null,
val active: Boolean? = null,
val otaAliases: Set<String>? = null,
val amenityIds: Set<UUID>? = null
)
@@ -22,6 +23,7 @@ data class RoomTypeResponse(
val maxOccupancy: Int,
val sqFeet: Int?,
val bathroomSqFeet: Int?,
val active: Boolean,
val otaAliases: Set<String>,
val amenities: Set<AmenityResponse>
)