feat(home-live): 현재 진행 중 라이브 응답 모델을 추가한다
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package kr.co.vividnext.sodalive.v2.api.home.live.dto
|
||||
|
||||
data class HomeOnAirLivePageResponse(
|
||||
val items: List<HomeOnAirLiveResponse>,
|
||||
val page: Int,
|
||||
val size: Int,
|
||||
val hasNext: Boolean
|
||||
)
|
||||
|
||||
data class HomeOnAirLiveResponse(
|
||||
val roomId: Long,
|
||||
val creatorNickname: String,
|
||||
val creatorProfileImage: String,
|
||||
val title: String,
|
||||
val price: Int,
|
||||
val beginDateTimeUtc: String
|
||||
)
|
||||
Reference in New Issue
Block a user