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.
31 lines
728 B
31 lines
728 B
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; }
|
|
}
|
|
}
|