12 lines
305 B
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
|
|
}
|