후원랭킹 전체보기 추가

This commit is contained in:
Yu Sung
2023-08-29 14:10:16 +09:00
parent 88fcbc98f4
commit e68961bd0d
8 changed files with 381 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
//
// 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]
}