라이브 메인 - 추천라이브, 추천채널, 예약중인 라이브, 진행중인 라이브, 이벤트 배너 API 추가
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package kr.co.vividnext.sodalive.event
|
||||
|
||||
import com.querydsl.core.annotations.QueryProjection
|
||||
|
||||
data class GetEventResponse(
|
||||
val totalCount: Int,
|
||||
val eventList: List<EventItem>
|
||||
)
|
||||
|
||||
data class EventItem @QueryProjection constructor(
|
||||
val id: Long,
|
||||
val title: String? = null,
|
||||
var thumbnailImageUrl: String,
|
||||
var detailImageUrl: String? = null,
|
||||
var popupImageUrl: String? = null,
|
||||
val link: String? = null,
|
||||
val isPopup: Boolean
|
||||
)
|
Reference in New Issue
Block a user