Files
sodalive-ios/SodaLive/Sources/Chat/Talk/Room/Message/SendChatMessageResponse.swift
2025-09-02 23:55:46 +09:00

13 lines
237 B
Swift

//
// SendChatMessageResponse.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct SendChatMessageResponse: Decodable {
let messages: [ServerChatMessage]
let totalRemaining: Int
let nextRechargeAtEpoch: Int64?
}