Add type to externalids to distinguish them in the UI

This commit is contained in:
Luke Foust
2020-03-22 12:58:53 -07:00
parent f3213d3bef
commit 9bdb99fe92
12 changed files with 96 additions and 7 deletions

View File

@@ -8,8 +8,27 @@ namespace MediaBrowser.Controller.Providers
string Key { get; }
ExternalIdType Type { get; }
string UrlFormatString { get; }
bool Supports(IHasProviderIds item);
}
public enum ExternalIdType
{
None,
Album,
AlbumArtist,
Artist,
BoxSet,
Episode,
Movie,
OtherArtist,
Person,
ReleaseGroup,
Season,
Series,
Track
}
}