feat(creator): 오디오 탭을 추가한다
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import Foundation
|
||||
|
||||
struct CreatorChannelAudioTabResponse: Decodable {
|
||||
let audioContentCount: Int
|
||||
let paidAudioContentCount: Int
|
||||
let purchasedAudioContentCount: Int
|
||||
let purchasedAudioContentRate: Double
|
||||
let themes: [CreatorChannelAudioThemeResponse]
|
||||
let audioContents: [CreatorChannelAudioContentResponse]
|
||||
let sort: ContentSort
|
||||
let themeId: Int?
|
||||
let page: Int
|
||||
let size: Int
|
||||
let hasNext: Bool
|
||||
}
|
||||
|
||||
struct CreatorChannelAudioThemeResponse: Decodable, Hashable {
|
||||
let themeId: Int
|
||||
let themeName: String
|
||||
}
|
||||
Reference in New Issue
Block a user