mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-17 06:06:54 +01: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; }
|
|
}
|
|
}
|