mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
23 lines
676 B
C#
23 lines
676 B
C#
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class SetPlaylistItemRequestBody.
|
||
|
/// </summary>
|
||
|
public class SetPlaylistItemRequestBody
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="SetPlaylistItemRequestBody"/> class.
|
||
|
/// </summary>
|
||
|
public SetPlaylistItemRequestBody()
|
||
|
{
|
||
|
PlaylistItemId = string.Empty;
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets the playlist identifier of the playing item.
|
||
|
/// </summary>
|
||
|
/// <value>The playlist identifier of the playing item.</value>
|
||
|
public string PlaylistItemId { get; set; }
|
||
|
}
|
||
|
}
|