19 lines
524 B
Swift
19 lines
524 B
Swift
//
|
|
// LiveMainResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 7/22/25.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct LiveMainResponse: Decodable {
|
|
let liveOnAirRoomList: [GetRoomListResponse]
|
|
let communityPostList: [GetCommunityPostListResponse]
|
|
let recommendLiveList: [GetRecommendLiveResponse]
|
|
let latestFinishedLiveList: [GetLatestFinishedLiveResponse]
|
|
let replayLive: [AudioContentMainItem]
|
|
let followingChannelList: [GetRecommendChannelResponse]
|
|
let liveReservationRoomList: [GetRoomListResponse]
|
|
}
|