Reservation
data class Reservation(var id: Int? = null, var index: Int? = null, var date: String? = null, var availableQuantity: Int? = null, var bookableStatus: BookableType? = null) : Parcelable
Constructors
Link copied to clipboard
constructor(id: Int? = null, index: Int? = null, date: String? = null, availableQuantity: Int? = null, bookableStatus: BookableType? = null)