Files
sodalive-ios/SodaLive/Sources/V2/CreatorChannel/Live/Models/CreatorChannelLiveTabResponse.swift

12 lines
305 B
Swift

import Foundation
struct CreatorChannelLiveTabResponse: Decodable {
let liveReplayContentCount: Int
let currentLive: CreatorChannelLiveResponse?
let liveReplayContents: [CreatorChannelAudioContentResponse]
let sort: ContentSort
let page: Int
let size: Int
let hasNext: Bool
}