Move PlaylistService to Jellyfin.Api

This commit is contained in:
crobibero
2020-06-08 13:14:41 -06:00
parent e153214e76
commit d97e306cda
4 changed files with 259 additions and 74 deletions

View File

@@ -0,0 +1,31 @@
#nullable enable
using System;
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; }
}
}