namespace MediaBrowser.Controller.Providers
{
///
/// The specific media type of an .
///
///
/// This is used as a translation key for clients.
///
public enum ExternalIdMediaType
{
///
/// There is no specific media type associated with the external id, or the external provider only has one
/// id type so there is no need to be specific.
///
None,
///
/// A music album.
///
Album,
///
/// The artist of a music album.
///
AlbumArtist,
///
/// The artist of a media item.
///
Artist,
///
/// A boxed set of media.
///
BoxSet,
///
/// A series episode.
///
Episode,
///
/// A movie.
///
Movie,
///
/// An alternative artist apart from the main artist.
///
OtherArtist,
///
/// A person.
///
Person,
///
/// A release group.
///
ReleaseGroup,
///
/// A single season of a series.
///
Season,
///
/// A series.
///
Series,
///
/// A music track.
///
Track
}
}