jellyfin/MediaBrowser.Model/Providers/ExternalIdMediaType.cs

78 lines
1.7 KiB
C#
Raw Normal View History

namespace MediaBrowser.Model.Providers
{
2020-05-17 14:22:36 -04:00
/// <summary>
2020-05-17 16:24:28 -04:00
/// The specific media type of an <see cref="ExternalIdInfo"/>.
2020-05-17 14:22:36 -04:00
/// </summary>
/// <remarks>
2020-05-17 16:24:28 -04:00
/// Client applications may use this as a translation key.
2020-05-17 14:22:36 -04:00
/// </remarks>
public enum ExternalIdMediaType
{
2020-05-17 14:22:36 -04:00
/// <summary>
2020-05-17 16:24:28 -04: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 14:22:36 -04:00
/// </summary>
General,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A music album.
/// </summary>
Album,
2020-05-17 14:22:36 -04:00
/// <summary>
/// The artist of a music album.
/// </summary>
AlbumArtist,
2020-05-17 14:22:36 -04:00
/// <summary>
/// The artist of a media item.
/// </summary>
Artist,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A boxed set of media.
/// </summary>
BoxSet,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A series episode.
/// </summary>
Episode,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A movie.
/// </summary>
Movie,
2020-05-17 14:22:36 -04:00
/// <summary>
/// An alternative artist apart from the main artist.
/// </summary>
OtherArtist,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A person.
/// </summary>
Person,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A release group.
/// </summary>
ReleaseGroup,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A single season of a series.
/// </summary>
Season,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A series.
/// </summary>
Series,
2020-05-17 14:22:36 -04:00
/// <summary>
/// A music track.
/// </summary>
Track
}
}