콘텐츠 메인

- 무료 탭 UI 페이지 생성
This commit is contained in:
Yu Sung
2025-02-22 05:50:26 +09:00
parent 4df34b7fb6
commit e6621c6606
5 changed files with 279 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
//
// GetContentMainTabFreeResponse.swift
// SodaLive
//
// Created by klaus on 2/22/25.
//
struct GetContentMainTabFreeResponse: Decodable {
let contentBannerList: [GetAudioContentBannerResponse]
let introduceCreator: GetContentCurationResponse?
let recommendSeriesList: [GetRecommendSeriesListResponse]
let themeList: [String]
let newFreeContentList: [GetAudioContentMainItem]
let creatorList: [ContentCreatorResponse]
let playCountRankContentList: [GetAudioContentRankingItem]
let curationList: [GetContentCurationResponse]
}