마이페이지 - 라이브 예약 수, 구매내역 추가

This commit is contained in:
2023-08-20 22:42:35 +09:00
parent 91d25081c0
commit 3ad2256a66
3 changed files with 33 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
package kr.co.vividnext.sodalive.member.myPage
import kr.co.vividnext.sodalive.content.order.GetAudioContentOrderListResponse
data class MyPageResponse(
val nickname: String,
val profileUrl: String,
@@ -10,5 +12,6 @@ data class MyPageResponse(
val websiteUrl: String? = null,
val blogUrl: String? = null,
val liveReservationCount: Int,
val isAuth: Boolean
val isAuth: Boolean,
val orderList: GetAudioContentOrderListResponse
)