feat(calculate): 관리자 정산 목록 응답에 totalCount와 items 구조를 추가한다
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package kr.co.vividnext.sodalive.admin.calculate
|
||||
|
||||
data class GetCalculateContentDonationListResponse(
|
||||
val totalCount: Int,
|
||||
val items: List<GetCalculateContentDonationResponse>
|
||||
)
|
||||
@@ -0,0 +1,6 @@
|
||||
package kr.co.vividnext.sodalive.admin.calculate
|
||||
|
||||
data class GetCalculateContentListResponse(
|
||||
val totalCount: Int,
|
||||
val items: List<GetCalculateContentResponse>
|
||||
)
|
||||
@@ -0,0 +1,6 @@
|
||||
package kr.co.vividnext.sodalive.admin.calculate
|
||||
|
||||
data class GetCalculateLiveListResponse(
|
||||
val totalCount: Int,
|
||||
val items: List<GetCalculateLiveResponse>
|
||||
)
|
||||
Reference in New Issue
Block a user