namespace MediaBrowser.Model.Entities
{
    /// 
    /// Enum VideoType
    /// 
    public enum VideoType
    {
        /// 
        /// The video file
        /// 
        VideoFile,
        /// 
        /// The iso
        /// 
        Iso,
        /// 
        /// The DVD
        /// 
        Dvd,
        /// 
        /// The blu ray
        /// 
        BluRay,
        /// 
        /// The hd DVD
        /// 
        HdDvd
    }
    /// 
    /// Enum IsoType
    /// 
    public enum IsoType
    {
        /// 
        /// The DVD
        /// 
        Dvd,
        /// 
        /// The blu ray
        /// 
        BluRay
    }
}