11 lines
260 B
Kotlin
11 lines
260 B
Kotlin
|
package org.example.dto.responses
|
||
|
|
||
|
import kotlinx.serialization.Serializable
|
||
|
import org.example.data.Models.CartItem
|
||
|
import org.example.data.Models.Sneaker
|
||
|
|
||
|
@Serializable
|
||
|
data class CartResponse(
|
||
|
val items: List<CartItem>,
|
||
|
val sneakers: List<Sneaker>
|
||
|
)
|