재생목록 만들기 페이지 추가

This commit is contained in:
Yu Sung
2024-12-09 18:11:28 +09:00
parent abc4a4f39d
commit 0fdb9edd23
20 changed files with 757 additions and 45 deletions

View File

@@ -0,0 +1,28 @@
//
// GetPlaylistDetailResponse.swift
// SodaLive
//
// Created by klaus on 12/8/24.
//
import Foundation
struct GetPlaylistDetailResponse: Decodable {
let playlistId: Int
let title: String
let desc: String
let createdDate: String
let contentCount: Int
let playlistCoverImageList: [String]
let contentList: [AudioContentPlaylistContent]
}
struct AudioContentPlaylistContent: Decodable {
let id: Int
let title: String
let category: String
let coverUrl: String
let duration: String
let creatorNickname: String
let creatorProfileUrl: String
}