sodalive-ios/SodaLive/Sources/Explorer/Profile/GetDonationAllResponse.swift

17 lines
348 B
Swift

//
// GetDonationAllResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/29.
//
import Foundation
struct GetDonationAllResponse: Decodable {
let accumulatedCansToday: Int
let accumulatedCansLastWeek: Int
let accumulatedCansThisMonth: Int
let totalCount: Int
let userDonationRanking: [UserDonationRankingResponse]
}