| 1234567891011121314151617181920212223242526 | namespace MediaBrowser.Model.Entities{    /// <summary>    /// Enum MetadataProviders    /// </summary>    public enum MetadataProviders    {        /// <summary>        /// The imdb        /// </summary>        Imdb,        /// <summary>        /// The TMDB        /// </summary>        Tmdb,        /// <summary>        /// The TVDB        /// </summary>        Tvdb,        /// <summary>        /// The tvcom        /// </summary>        Tvcom    }}
 |