11 lines
236 B
Kotlin
11 lines
236 B
Kotlin
package com.example.data.mapper
|
|
|
|
import com.example.data.remote.dto.BookingResponse
|
|
import com.example.domain.models.Booking
|
|
|
|
fun BookingResponse.toDomain(): Booking {
|
|
return Booking(
|
|
room = room,
|
|
time = time
|
|
)
|
|
} |