#nullable disable using System; namespace MediaBrowser.Model.SyncPlay { /// /// Class QueueItem. /// public class QueueItem { /// /// Gets or sets the item id. /// /// The item id. public Guid ItemId { get; set; } /// /// Gets or sets the playlist id of the item. /// /// The playlist id of the item. public string PlaylistItemId { get; set; } } }