feat(home-live): 현재 진행 중 라이브 응답 모델을 추가한다

This commit is contained in:
2026-06-27 00:06:01 +09:00
parent 38595ee88a
commit df5c2c9048
2 changed files with 57 additions and 0 deletions

View File

@@ -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
)