using System;
namespace MediaBrowser.Model.SyncPlay
{
    /// 
    /// Class QueueItem.
    /// 
    public class SyncPlayQueueItem
    {
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The item identifier.
        public SyncPlayQueueItem(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();
    }
}