using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
    /// 
    /// Class PlaybackStartInfo.
    /// 
    public class PlaybackStartInfo : PlaybackProgressInfo
    {
        public PlaybackStartInfo()
        {
            QueueableMediaTypes = new List();
        }
        /// 
        /// Gets or sets the queueable media types.
        /// 
        /// The queueable media types.
        public List QueueableMediaTypes { get; set; }
    }
}