|
@@ -5,19 +5,30 @@ namespace MediaBrowser.Controller.Providers
|
|
/// <summary>Represents and identifier for an external provider.</summary>
|
|
/// <summary>Represents and identifier for an external provider.</summary>
|
|
public interface IExternalId
|
|
public interface IExternalId
|
|
{
|
|
{
|
|
- /// <summary>Gets the name used to identify this provider</summary>
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the display name of the provider associated with this ID type.
|
|
|
|
+ /// </summary>
|
|
string Name { get; }
|
|
string Name { get; }
|
|
|
|
|
|
- /// <summary>Gets the unique key to distinguish this provider/type pair. This should be unique across providers.</summary>
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the unique key to distinguish this provider/type pair. This should be unique across providers.
|
|
|
|
+ /// </summary>
|
|
|
|
+ // TODO: This property is not actually unique at the moment. It should be updated to be unique.
|
|
string Key { get; }
|
|
string Key { get; }
|
|
|
|
|
|
- /// <summary>Gets the specific media type for this id.</summary>
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the specific media type for this id.
|
|
|
|
+ /// </summary>
|
|
ExternalIdMediaType Type { get; }
|
|
ExternalIdMediaType Type { get; }
|
|
|
|
|
|
- /// <summary>Gets the url format string for this id.</summary>
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Gets the URL format string for this id.
|
|
|
|
+ /// </summary>
|
|
string UrlFormatString { get; }
|
|
string UrlFormatString { get; }
|
|
|
|
|
|
- /// <summary>Determines whether this id supports a given item type.</summary>
|
|
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// Determines whether this id supports a given item type.
|
|
|
|
+ /// </summary>
|
|
/// <param name="item">The item.</param>
|
|
/// <param name="item">The item.</param>
|
|
/// <returns>True if this item is supported, otherwise false.</returns>
|
|
/// <returns>True if this item is supported, otherwise false.</returns>
|
|
bool Supports(IHasProviderIds item);
|
|
bool Supports(IHasProviderIds item);
|