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.
26 lines
751 B
26 lines
751 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
|
{
|
|
/// <summary>
|
|
/// Class RemoveFromPlaylistRequestBody.
|
|
/// </summary>
|
|
public class RemoveFromPlaylistRequestBody
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="RemoveFromPlaylistRequestBody"/> class.
|
|
/// </summary>
|
|
public RemoveFromPlaylistRequestBody()
|
|
{
|
|
PlaylistItemIds = Array.Empty<string>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the playlist identifiers ot the items.
|
|
/// </summary>
|
|
/// <value>The playlist identifiers ot the items.</value>
|
|
public IReadOnlyList<string> PlaylistItemIds { get; set; }
|
|
}
|
|
}
|