using System;
using System.Collections.Generic;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Dto;
///
/// DTO for playlists.
///
public class PlaylistDto
{
///
/// Gets or sets a value indicating whether the playlist is publicly readable.
///
public bool OpenAccess { get; set; }
///
/// Gets or sets the share permissions.
///
public required IReadOnlyList Shares { get; set; }
///
/// Gets or sets the item ids.
///
public required IReadOnlyList ItemIds { get; set; }
}