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

35 lines
575 B

using MediaBrowser.Model.Entities;
6 years ago
namespace MediaBrowser.Controller.Providers
{
public interface IExternalId
{
string Name { get; }
string Key { get; }
ExternalIdType Type { get; }
6 years ago
string UrlFormatString { get; }
bool Supports(IHasProviderIds item);
}
public enum ExternalIdType
{
None,
Album,
AlbumArtist,
Artist,
BoxSet,
Episode,
Movie,
OtherArtist,
Person,
ReleaseGroup,
Season,
Series,
Track
}
6 years ago
}