Files
sodalive-ios/SodaLive/Sources/V2/CreatorChannel/Donation/Models/CreatorChannelDonationTabResponse.swift
2026-07-04 22:44:31 +09:00

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
}