콘텐츠 메인 - 인기 콘텐츠 영역 추가

This commit is contained in:
Yu Sung
2023-10-15 05:50:54 +09:00
parent 41d5bad46f
commit c440e8abd9
4 changed files with 166 additions and 0 deletions

View File

@@ -14,6 +14,24 @@ struct GetAudioContentMainResponse: Decodable {
let themeList: [String]
let newContentList: [GetAudioContentMainItem]
let curationList: [GetAudioContentCurationResponse]
let contentRanking: GetAudioContentRanking
}
struct GetAudioContentRanking: Decodable {
let startDate: String
let endDate: String
let items: [GetAudioContentRankingItem]
}
struct GetAudioContentRankingItem: Decodable {
let contentId: Int
let title: String
let coverImageUrl: String
let themeStr: String
let price: Int
let duration: String
let creatorId: Int
let creatorNickname: String
}
struct GetNewContentUploadCreator: Decodable {