| 12345678910111213141516171819202122232425262728 | namespace MediaBrowser.Model.Entities{    /// <summary>    /// Enum VideoType.    /// </summary>    public enum VideoType    {        /// <summary>        /// The video file.        /// </summary>        VideoFile,        /// <summary>        /// The iso.        /// </summary>        Iso,        /// <summary>        /// The DVD.        /// </summary>        Dvd,        /// <summary>        /// The blu ray.        /// </summary>        BluRay    }}
 |