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

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,12 @@
//
// CreatePlaylistRequest.swift
// SodaLive
//
// Created by klaus on 12/8/24.
//
struct CreatePlaylistRequest: Encodable {
let title: String
let desc: String?
let contentIdAndOrderList: [PlaylistContentIdAndOrder]
}