Files
sodalive-ios/SodaLive/Sources/Explorer/Profile/GetDonationAllResponse.swift
Yu Sung 13f8d924c0 기부 랭킹 기간 선택 추가
프로필 기부 랭킹 조회와 프로필 갱신 요청에\n기간 값을 전달한다.
2026-02-03 18:38:36 +09:00

19 lines
438 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 isVisibleDonationRank: Bool
let donationRankingPeriod: DonationRankingPeriod?
let totalCount: Int
let userDonationRanking: [UserDonationRankingResponse]
}