namespace MediaBrowser.Model.SyncPlay.RequestBodies { /// /// Class SetPlaylistItemRequestBody. /// public class SetPlaylistItemRequestBody { /// /// Initializes a new instance of the class. /// public SetPlaylistItemRequestBody() { PlaylistItemId = string.Empty; } /// /// Gets or sets the playlist identifier of the playing item. /// /// The playlist identifier of the playing item. public string PlaylistItemId { get; set; } } }