Files
sodalive-ios/SodaLive/Sources/Chat/Talk/Room/Quota/ChatQuotaStatusResponse.swift
Yu Sung 2576c851ee feat(chat-room) 채팅방 API
- 채팅방 입장 API 연동
- 채팅 쿼터가 없을 때 표시할 UI 추가
2025-09-04 04:25:28 +09:00

12 lines
199 B
Swift

//
// ChatQuotaStatusResponse.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct ChatQuotaStatusResponse: Decodable {
let totalRemaining: Int
let nextRechargeAtEpoch: Int64?
}