ai creates booking

This commit is contained in:
androidlover5842
2026-01-24 19:22:37 +05:30
parent b8c9f8dac4
commit ac79d6d1c0
18 changed files with 559 additions and 12 deletions

View File

@@ -16,7 +16,8 @@ data class PropertyCreateRequest(
val name: String,
val timezone: String? = null,
val currency: String? = null,
val active: Boolean? = null
val active: Boolean? = null,
val emailAliases: Set<String>? = null
)
data class PropertyUpdateRequest(
@@ -24,7 +25,8 @@ data class PropertyUpdateRequest(
val name: String,
val timezone: String? = null,
val currency: String? = null,
val active: Boolean? = null
val active: Boolean? = null,
val emailAliases: Set<String>? = null
)
data class PropertyResponse(
@@ -34,7 +36,8 @@ data class PropertyResponse(
val name: String,
val timezone: String,
val currency: String,
val active: Boolean
val active: Boolean,
val emailAliases: Set<String>
)
data class UserResponse(