Files
sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/menu/GetMenuResponse.kt
2023-08-04 22:32:34 +09:00

13 lines
397 B
Kotlin

package kr.co.vividnext.sodalive.menu
import com.fasterxml.jackson.annotation.JsonInclude
import com.querydsl.core.annotations.QueryProjection
data class GetMenuResponse @QueryProjection constructor(
val title: String,
@JsonInclude(JsonInclude.Include.NON_NULL)
val route: String? = null,
@JsonInclude(JsonInclude.Include.NON_NULL)
val items: List<GetMenuResponse>? = null
)