2020-06-20 22:07:53 +00:00
|
|
|
|
using System;
|
2020-06-08 19:14:41 +00: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>
|
|
|
|
|
public string? Ids { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the media type.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? MediaType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|