using System; namespace MediaBrowser.Model.SyncPlay { /// /// Class QueueItem. /// public class QueueItem { /// /// Initializes a new instance of the class. /// /// The item identifier. /// The playlist identifier of the item. public QueueItem(Guid itemId, string playlistItemId) { ItemId = itemId; PlaylistItemId = playlistItemId; } /// /// 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 string PlaylistItemId { get; } } }