Remove amenity description field
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-27 04:37:19 +05:30
parent eb0b99f55a
commit 19153900fd
4 changed files with 5 additions and 14 deletions

View File

@@ -29,14 +29,12 @@ data class RoomTypeResponse(
data class AmenityUpsertRequest(
val name: String,
val category: String? = null,
val iconKey: String? = null,
val description: String? = null
val iconKey: String? = null
)
data class AmenityResponse(
val id: UUID,
val name: String,
val category: String?,
val iconKey: String?,
val description: String?
val iconKey: String?
)