메뉴 API

This commit is contained in:
2023-08-04 22:32:34 +09:00
parent 03d782850c
commit 88df83fdc0
5 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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
)