2020-06-20 16:07:53 -06:00
|
|
|
|
using System;
|
2020-11-16 20:29:46 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using MediaBrowser.Common.Json.Converters;
|
2020-06-08 13:14:41 -06:00
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Models.PlaylistDtos
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Create new playlist dto.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CreatePlaylistDto
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the name of the new playlist.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets item ids to add to the playlist.
|
|
|
|
|
|
/// </summary>
|
2020-11-16 20:29:46 -07:00
|
|
|
|
[JsonConverter(typeof(JsonCommaDelimitedArrayConverterFactory))]
|
|
|
|
|
|
public IReadOnlyList<Guid> Ids { get; set; } = Array.Empty<Guid>();
|
2020-06-08 13:14:41 -06:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the user id.
|
|
|
|
|
|
/// </summary>
|
2020-12-13 13:34:04 +01:00
|
|
|
|
public Guid? UserId { get; set; }
|
2020-06-08 13:14:41 -06:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the media type.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? MediaType { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|