sodalive-ios/SodaLive/Sources/Content/Playlist/Modify/UpdatePlaylistRequest.swift

13 lines
237 B
Swift

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