sodalive-ios/SodaLive/Sources/Content/Playlist/Create/CreatePlaylistRequest.swift

13 lines
235 B
Swift

//
// CreatePlaylistRequest.swift
// SodaLive
//
// Created by klaus on 12/8/24.
//
struct CreatePlaylistRequest: Encodable {
let title: String
let desc: String?
let contentIdAndOrderList: [PlaylistContentIdAndOrder]
}