feat(creator): 후원 탭 API를 추가한다
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import Foundation
|
||||
|
||||
struct CreatorChannelDonationTabResponse: Decodable {
|
||||
let donationCount: Int
|
||||
let rankings: [MemberDonationRankingResponse]
|
||||
let donations: [CreatorChannelDonationResponse]
|
||||
let page: Int
|
||||
let size: Int
|
||||
let hasNext: Bool
|
||||
}
|
||||
|
||||
struct MemberDonationRankingResponse: Decodable {
|
||||
let userId: Int
|
||||
let nickname: String
|
||||
let profileImage: String
|
||||
let donationCan: Int
|
||||
}
|
||||
Reference in New Issue
Block a user