feat(creator): 라이브 탭 기반을 추가한다

This commit is contained in:
Yu Sung
2026-07-03 23:53:08 +09:00
parent 03d286e8a9
commit ce923ab2d7
11 changed files with 944 additions and 3 deletions

View File

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