Files
sodalive-ios/SodaLive/Sources/V2/Main/Chat/Models/MainChatRoomsResponse.swift
2026-07-08 15:54:07 +09:00

19 lines
390 B
Swift

import Foundation
struct MainChatRoomsResponse: Decodable {
let rooms: [MainChatRoomItem]
let hasMore: Bool
let nextCursor: String?
}
struct MainChatRoomItem: Decodable, Identifiable {
let roomId: Int
let chatType: String
let targetName: String
let targetImageUrl: String
let lastMessage: String
let lastMessageAt: String
var id: Int { roomId }
}