feat(chat-talk): 톡 목록 조회 API 연동 및 목록 UI 구성

This commit is contained in:
Yu Sung
2025-08-29 22:25:12 +09:00
parent 4dd1866169
commit 6afe04048f
6 changed files with 251 additions and 9 deletions

View File

@@ -0,0 +1,15 @@
//
// 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
}