12 lines
198 B
Swift
12 lines
198 B
Swift
//
|
|
// ChatQuotaStatusResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 9/2/25.
|
|
//
|
|
|
|
struct ChatQuotaStatusResponse: Decodable {
|
|
let totalRemaining: Int
|
|
let nextRechargeAtEpoch: Int64
|
|
}
|