메뉴 API
This commit is contained in:
@@ -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
|
||||
)
|
Reference in New Issue
Block a user