18 lines
414 B
Swift
18 lines
414 B
Swift
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
|
|
}
|