11 lines
159 B
Swift
11 lines
159 B
Swift
//
|
|
// CreateChatRoomResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 9/2/25.
|
|
//
|
|
|
|
struct CreateChatRoomResponse: Decodable {
|
|
let chatRoomId: Int64
|
|
}
|