Files
sodalive-ios/SodaLive/Sources/Content/Playlist/Modify/UpdatePlaylistRequest.swift
2024-12-10 14:06:34 +09:00

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]
}