feat: 신규 홈 추가

This commit is contained in:
Yu Sung
2025-07-11 12:18:37 +09:00
parent fca5425e81
commit e121ec1ee4
12 changed files with 492 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
//
// GetHomeResponse.swift
// SodaLive
//
// Created by klaus on 7/11/25.
//
struct GetHomeResponse: Decodable {
let liveList: [GetRoomListResponse]
let creatorRanking: [GetExplorerSectionCreatorResponse]
let latestContentThemeList: [String]
let latestContentList: [AudioContentMainItem]
let eventBannerList: GetEventResponse
let originalAudioDramaList: [SeriesListItem]
let auditionList: [GetAuditionListItem]
let dayOfWeekSeriesList: [SeriesListItem]
let contentRanking: [GetAudioContentRankingItem]
let recommendChannelList: [RecommendChannelResponse]
let freeContentList: [AudioContentMainItem]
let curationList: [GetContentCurationResponse]
}