마이페이지 메인 - 마이페이지 조회 API 추가

This commit is contained in:
2023-07-28 14:38:53 +09:00
parent 6174ec3523
commit ab116bb45b
3 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package kr.co.vividnext.sodalive.member.myPage
data class MyPageResponse(
val nickname: String,
val profileUrl: String,
val chargeCan: Int,
val rewardCan: Int,
val youtubeUrl: String?,
val instagramUrl: String?,
val websiteUrl: String? = null,
val blogUrl: String? = null,
val liveReservationCount: Int,
val isAuth: Boolean
)