using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Playlists;
/// 
/// A playlist update request.
/// 
public class PlaylistUpdateRequest
{
    /// 
    /// Gets or sets the id of the playlist.
    /// 
    public Guid Id { get; set; }
    /// 
    /// Gets or sets the id of the user updating the playlist.
    /// 
    public Guid UserId { get; set; }
    /// 
    /// Gets or sets the name of the playlist.
    /// 
    public string? Name { get; set; }
    /// 
    /// Gets or sets item ids to add to the playlist.
    /// 
    public IReadOnlyList? Ids { get; set; }
    /// 
    /// Gets or sets the playlist users.
    /// 
    public IReadOnlyList? Users { get; set; }
    /// 
    /// Gets or sets a value indicating whether the playlist is public.
    /// 
    public bool? Public { get; set; }
}