Files
sodalive-ios/SodaLive/Sources/Chat/Talk/TalkRoom.swift

16 lines
279 B
Swift

//
// TalkRoom.swift
// SodaLive
//
// Created by klaus on 8/29/25.
//
struct TalkRoom: Decodable {
let chatRoomId: Int
let title: String
let imageUrl: String
let opponentType: String
let lastMessagePreview: String?
let lastMessageTimeLabel: String
}