using System; namespace Jellyfin.Api.Models.PlaylistDtos { /// /// Create new playlist dto. /// public class CreatePlaylistDto { /// /// Gets or sets the name of the new playlist. /// public string? Name { get; set; } /// /// Gets or sets item ids to add to the playlist. /// public string? Ids { get; set; } /// /// Gets or sets the user id. /// public Guid UserId { get; set; } /// /// Gets or sets the media type. /// public string? MediaType { get; set; } } }