2020-05-17 19:57:24 +00:00
|
|
|
namespace MediaBrowser.Model.Providers
|
2020-03-26 21:26:12 +00:00
|
|
|
{
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
2020-05-17 20:24:28 +00:00
|
|
|
/// The specific media type of an <see cref="ExternalIdInfo"/>.
|
2020-05-17 18:22:36 +00:00
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
2020-05-17 20:24:28 +00:00
|
|
|
/// Client applications may use this as a translation key.
|
2020-05-17 18:22:36 +00:00
|
|
|
/// </remarks>
|
2020-03-26 21:26:12 +00:00
|
|
|
public enum ExternalIdMediaType
|
|
|
|
{
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
2020-05-17 20:24:28 +00:00
|
|
|
/// There is no specific media type associated with the external id, or this is the default id for the external
|
|
|
|
/// provider so there is no need to specify a type.
|
2020-05-17 18:22:36 +00:00
|
|
|
/// </summary>
|
2020-05-17 19:29:53 +00:00
|
|
|
General,
|
2020-03-26 21:26:12 +00:00
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A music album.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Album,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The artist of a music album.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
AlbumArtist,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The artist of a media item.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Artist,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A boxed set of media.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
BoxSet,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A series episode.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Episode,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A movie.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Movie,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An alternative artist apart from the main artist.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
OtherArtist,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A person.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Person,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A release group.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
ReleaseGroup,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A single season of a series.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Season,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A series.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Series,
|
|
|
|
|
2020-05-17 18:22:36 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A music track.
|
|
|
|
/// </summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
Track
|
|
|
|
}
|
|
|
|
}
|