using System.Collections.Generic;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Providers;
/// 
/// Interface to include related urls for an item.
/// 
public interface IExternalUrlProvider
{
    /// 
    /// Gets the external service name.
    /// 
    string Name { get; }
    /// 
    /// Get the list of external urls.
    /// 
    /// The item to get external urls for.
    /// The list of external urls.
    IEnumerable GetExternalUrls(BaseItem item);
}