Add amenity category and icon fields
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-27 04:21:20 +05:30
parent 3a8f871d7d
commit c3ec6e8d4a
4 changed files with 32 additions and 5 deletions

View File

@@ -27,11 +27,17 @@ data class RoomTypeResponse(
)
data class AmenityUpsertRequest(
val name: String
val name: String,
val category: String? = null,
val iconKey: String? = null,
val description: String? = null
)
data class AmenityResponse(
val id: UUID,
val propertyId: UUID,
val name: String
val name: String,
val category: String?,
val iconKey: String?,
val description: String?
)