16 lines
279 B
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
|
|
}
|