14 lines
197 B
Swift
14 lines
197 B
Swift
//
|
|
// LiveRoomDonationResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 5/1/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct LiveRoomDonationResponse: Codable {
|
|
let imageUrl: String
|
|
let time: Int
|
|
}
|