Add amenity category and icon fields
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s
This commit is contained in:
@@ -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?
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user