feat(chat-room) 채팅방 골격 추가

This commit is contained in:
Yu Sung
2025-09-02 21:49:22 +09:00
parent 833fd0f1b0
commit 6b445fff7c
19 changed files with 246 additions and 21 deletions

View File

@@ -0,0 +1,10 @@
//
// CreateChatRoomRequest.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct CreateChatRoomRequest: Encodable {
let characterId: Int64
}

View File

@@ -0,0 +1,10 @@
//
// CreateChatRoomResponse.swift
// SodaLive
//
// Created by klaus on 9/2/25.
//
struct CreateChatRoomResponse: Decodable {
let chatRoomId: Int64
}