using System; namespace MediaBrowser.Model.SyncPlay { /// /// Class QueueItem. /// public class QueueItem { /// /// Initializes a new instance of the class. /// /// The item identifier. public QueueItem(Guid itemId) { ItemId = itemId; } /// /// Gets the item identifier. /// /// The item identifier. public Guid ItemId { get; } /// /// Gets the playlist identifier of the item. /// /// The playlist identifier of the item. public Guid PlaylistItemId { get; } = Guid.NewGuid(); } }