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