feat(creator): 후원 탭 API를 추가한다

This commit is contained in:
Yu Sung
2026-07-04 22:44:31 +09:00
parent 265ac75eab
commit 3e11d82938
3 changed files with 74 additions and 0 deletions

View File

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