24 lines
		
	
	
		
			461 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			461 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
//
 | 
						|
//  GetLiveRoomDonationStatusResponse.swift
 | 
						|
//  SodaLive
 | 
						|
//
 | 
						|
//  Created by klaus on 2023/08/14.
 | 
						|
//
 | 
						|
 | 
						|
import Foundation
 | 
						|
 | 
						|
struct GetLiveRoomDonationStatusResponse: Decodable {
 | 
						|
    let donationList: [GetLiveRoomDonationItem]
 | 
						|
    let totalCount: Int
 | 
						|
    let totalCan: Int
 | 
						|
    let totalSecretCan: Int
 | 
						|
}
 | 
						|
 | 
						|
struct GetLiveRoomDonationItem: Decodable {
 | 
						|
    let profileImage: String
 | 
						|
    let nickname: String
 | 
						|
    let userId: Int
 | 
						|
    let can: Int
 | 
						|
    let secretCan: Int
 | 
						|
}
 |