내 보관함, 재생목록 리스트 UI 추가

This commit is contained in:
Yu Sung
2024-12-07 05:32:05 +09:00
parent 627d6d9b7e
commit abc4a4f39d
14 changed files with 490 additions and 81 deletions

View File

@@ -0,0 +1,19 @@
//
// GetPlaylistsResponse.swift
// SodaLive
//
// Created by klaus on 12/7/24.
//
struct GetPlaylistsResponse: Decodable {
let totalCount: Int
let items: [GetPlaylistsItem]
}
struct GetPlaylistsItem: Decodable {
let id: Int
let title: String
let desc: String
let contentCount: Int
let coverImageUrl: String
}