|
|
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Jellyfin.Data.Enums;
|
|
|
|
|
using Jellyfin.Extensions.Json.Converters;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Models.PlaylistDtos;
|
|
|
|
|
|
|
|
|
@ -20,7 +21,7 @@ public class CreatePlaylistDto
|
|
|
|
|
/// Gets or sets item ids to add to the playlist.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))]
|
|
|
|
|
public IReadOnlyList<Guid> Ids { get; set; } = Array.Empty<Guid>();
|
|
|
|
|
public IReadOnlyList<Guid> Ids { get; set; } = [];
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user id.
|
|
|
|
@ -31,4 +32,14 @@ public class CreatePlaylistDto
|
|
|
|
|
/// Gets or sets the media type.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public MediaType? MediaType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the shares.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public IReadOnlyList<Share> Shares { get; set; } = [];
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether open access is enabled.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool OpenAccess { get; set; }
|
|
|
|
|
}
|
|
|
|
|