You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Controller/Providers/IExternalId.cs

26 lines
962 B

using MediaBrowser.Model.Entities;
6 years ago
namespace MediaBrowser.Controller.Providers
{
/// <summary>Represents and identifier for an external provider.</summary>
6 years ago
public interface IExternalId
{
/// <summary>Gets the name used to identify this provider</summary>
6 years ago
string Name { get; }
/// <summary>Gets the unique key to distinguish this provider/type pair. This should be unique across providers.</summary>
6 years ago
string Key { get; }
/// <summary>Gets the specific media type for this id.</summary>
ExternalIdMediaType Type { get; }
/// <summary>Gets the url format string for this id.</summary>
6 years ago
string UrlFormatString { get; }
/// <summary>Determines whether this id supports a given item type.</summary>
/// <param name="item">The item.</param>
/// <returns>True if this item is supported, otherwise false.</returns>
6 years ago
bool Supports(IHasProviderIds item);
}
}