feat(chat-room): 채팅방에 필요한 기본적인 파일 추가

This commit is contained in:
Yu Sung
2025-09-03 17:37:23 +09:00
parent 6b445fff7c
commit a42edbe99c
9 changed files with 119 additions and 2 deletions

View File

@@ -5,4 +5,6 @@
// Created by klaus on 9/2/25.
//
import Foundation
struct ChatQuotaPurchaseRequest: Encodable {
let container: String = "ios"
}

View File

@@ -5,4 +5,7 @@
// Created by klaus on 9/2/25.
//
import Foundation
struct ChatQuotaStatusResponse: Decodable {
let totalRemaining: Int
let nextRechargeAtEpoch: Int64
}