You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Dto/PlaylistDto.cs

27 lines
658 B

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